extjs grid works in Firefox, not in IE - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T04:07:46Z http://stackoverflow.com/feeds/question/719937 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/719937/extjs-grid-works-in-firefox-not-in-ie 0 extjs grid works in Firefox, not in IE shawnswaner 2009-04-06T00:23:54Z 2009-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#719944 2 Answer by shawnswaner for extjs grid works in Firefox, not in IE shawnswaner 2009-04-06T00:26:56Z 2009-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#1092247 0 Answer by Allan for extjs grid works in Firefox, not in IE Allan 2009-07-07T13:07:11Z 2009-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#1404188 0 Answer by thorsten for extjs grid works in Firefox, not in IE thorsten 2009-09-10T09:03:30Z 2009-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>