Login Register

Dojo1.0 shows Object required-Information message on IE 7 status bar

Hi ,We are using DOJO 1.0 with IE 7 and we can observer in the IE status bar the following information message (with written test on Status bar DONE) when we click on any link in the first page of website we say the informational icon along with done text on status bar and if we double click on the icon we saw the following information.Urgent help needed.

line :21
char :41160
Error:Object required
code :error

Please help in resolving this issue.

No such issue is observed with ForeFox

thanks,

Are you using a data store,

Are you using a data store, e.g., ItemFileReadStore?

If so, can you post here the data that the server (or page) provides the data store?

You may want to create a very small test version of your web page, with just enough content/widgets to demonstrate the problem, and then post it in a reply, here, putting the full html page contents between code tags,

<code>
your html page code goes here
</code>

Then others can review it and find a solution. Thanks.

The reason I asked about a

The reason I asked about a store is that Firefox tolerates/permits a JSON array with a trailing comma, e.g.,

var data = {identifier:'name', items:[{name:'bob'},{name:'sally'},]};

whereas, IE gives a similar error to the one that you see.

Ensure that your data does not include the trailing comma (after the last "item" in the array), i.e., should be like this (not with comma as above):

var data = {identifier:'name', items:[{name:'bob'},{name:'sally'}]};