Dojo Tooltip. dojo.data fetch(). Problems in opera - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T08:07:23Zhttp://stackoverflow.com/feeds/question/863709http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/863709/dojo-tooltip-dojo-data-fetch-problems-in-opera0Dojo Tooltip. dojo.data fetch(). Problems in opera2009-05-14T14:39:22Z2009-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#12507200Answer by Adam for Dojo Tooltip. dojo.data fetch(). Problems in operaAdam2009-08-09T05:18:39Z2009-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>