Hi all,
I have download some sample codes from Jason Beres' webinar from this site:
http://ko.infragistics.com/community/blogs/jason_beres/archive/2012/06/23/jquery-html5-infragistics-webinar-week-follow-up-get-code-and-decks.aspx
I downloaded this file: http://users.infragistics.com/jasonb/blogs/building-real-world-apps.zip
the first sample in this zip file is GridWithChart. However I got an error. See attached screenshot. the error is occurred in infragistics.dvcommonwidget.js
It just says something is null. Is it related to modernizer.js
I do have mvc 3, entity framedwork 4.1 and 2012.1 Jquery installed on my computer. I don't know what I miss.
Thanks,
Betty
Hi Betty,There are a couple of things to consider about this sample which might be the causes of the error you've received:1. If you open the sample in IE8 or IE7, you will receive the error you mentioned because both browsers do not support the HTML 5 <canvas> tag which is used by our HTML5 charts.2. There's an excessive comma (,) at line #104 - right after the definition of the features array - however only IE7 is strict enough to whine about such an error so if you remove that comma you will be OK.As a conclusion I suggest running the sample on IE9, Firefox, Chrome, Opera, Safari or Maxthon - just later generation browsers :)That way you will be able to get the most out of the sample. Cheers,Borislav
Hi Borislav,
You are correct. When I switched default browser from IE8 to Firefox in VS. The error is gone.
However, no controls are delivered. Martin pointed out in the following.
Thanks so much for your input. I have got quite some info from your guys.