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,
your html page code goes here
</code>
Then others can review it and find a solution. Thanks.
Index.html has many links
Index.html has many links and one of them is liek .
This Link BRINGS INTO THE html page Dojo content pane which displays which make sus eof 2-3 mod files to present the data fetched from the DB (on clicking a LINK OF THE INDEX PAGE A servlet is also called to get the data from the DB AND T HAT DATA IS PUSHED TO THE DOJO FIELD IN THE CONTENT PANE)
so WHEN WE CLICK ON ANY LINK ON THE iNDEX PAGE THE STATUS BAR OF THE ie7 SHOWS eRROR .WHEN I DOUBLE CLICK ON TEH ICON ON THE STATUS BAR THE IT SHOWS THE FOLLOWING INFORMATION WHICH POINTS TO DOJO.JS)
Line 21
Char 41160
Error Object Required.
code:0
URL: URL name.
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'}]};