Dojo Tooltip. dojo.data fetch(). Problems in opera - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:07:23Z http://stackoverflow.com/feeds/question/863709 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/863709/dojo-tooltip-dojo-data-fetch-problems-in-opera 0 Dojo Tooltip. dojo.data fetch(). Problems in opera 2009-05-14T14:39:22Z 2009-08-09T05:18:39Z <p>Weird problem with dojo.data.</p> <pre><code>var store = new dojo.data.ItemFileReadStore({ url: "[myUrl]" }); console.log(temp.fetch({ query:{id:'*'}, onComplete: functionOnComplete, onError: functionOnError })); </code></pre> <p>functionOnError show such trace in opera only:</p> <pre><code>message : Statement on line 16: Syntax error Backtrace: Line 16 of linked script http://locarbn.ru/js/dojo/dojo/dojo.js function(json){return eval("("+json+")");} ................................................... opera#sourceloc : 16, stacktrace : ... Line 16 of linked script http://locarbn.ru/js/dojo/dojo/dojo.js </code></pre> <p>As I have understand, opera do not understand some dojo syntax, how to solve this problem?</p> <p>I am writing dojox.grid and request the data through dojo.data.ItemFileWriteStore. Can I make another way?</p> http://stackoverflow.com/questions/863709/dojo-tooltip-dojo-data-fetch-problems-in-opera/1250720#1250720 0 Answer by Adam for Dojo Tooltip. dojo.data fetch(). Problems in opera Adam 2009-08-09T05:18:39Z 2009-08-09T05:18:39Z <p>Dojo appears to be choking on the content coming back from your data store. Is it valid JSON? Can you run it through a simple 'eval' in Opera with parens around it?</p>