Weird problem with dojo.data.
var store = new dojo.data.ItemFileReadStore({ url: "[myUrl]" });
console.log(temp.fetch({
query:{id:'*'},
onComplete: functionOnComplete,
onError: functionOnError
}));
functionOnError show such trace in opera only:
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
As I have understand, opera do not understand some dojo syntax, how to solve this problem?
I am writing dojox.grid and request the data through dojo.data.ItemFileWriteStore. Can I make another way?