extjs grid works in Firefox, not in IE - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T04:07:46Zhttp://stackoverflow.com/feeds/question/719937http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/719937/extjs-grid-works-in-firefox-not-in-ie0extjs grid works in Firefox, not in IEshawnswaner2009-04-06T00:23:54Z2009-09-10T09:03:30Z
<p>I have a collection of extjs objects on a webpage, developing using Firefox so I can debug using Firebug. After a while I start IE to check compatibility and get a blank page in IE, but all works in FF. </p>
<p>In IE I get no Javascript errors.</p>
http://stackoverflow.com/questions/719937/extjs-grid-works-in-firefox-not-in-ie/719944#7199442Answer by shawnswaner for extjs grid works in Firefox, not in IEshawnswaner2009-04-06T00:26:56Z2009-04-06T00:26:56Z<p>In the Firebug options turn on "Strict Warnings" then look for a warning in the .js source file for your page. It seems that Firefox is much more forgiving of a comma after the last member of a collection. Look for warning labeled "trailing comma is not legal in ECMA-262 object initializers". This pinpointed the problem. </p>
http://stackoverflow.com/questions/719937/extjs-grid-works-in-firefox-not-in-ie/1092247#10922470Answer by Allan for extjs grid works in Firefox, not in IEAllan2009-07-07T13:07:11Z2009-07-07T13:07:11Z<p>jslint.com helps a lot with IE JavaScript problems. It's too easy to have a hanging comma that FF ignores and IE chokes on.</p>
http://stackoverflow.com/questions/719937/extjs-grid-works-in-firefox-not-in-ie/1404188#14041880Answer by thorsten for extjs grid works in Firefox, not in IEthorsten2009-09-10T09:03:30Z2009-09-10T09:03:30Z<p>'It seems that Firefox is much more forgiving of a comma after the last member of a collection.'</p>
<p>Yeah!! thats it. In addition to jslint theres is also <a href="http://www.jsonlint.com/" rel="nofollow">http://www.jsonlint.com/</a> available. </p>