Hello
I try to parse a json string by the parse function of my grid.
grid.parse(stringt, 'json');
But I have the error: Uncaught TypeError: Cannot read property 'length' of undefined
dhtmlXGridObject._process_json dhtmlx.js:946
dhtmlXGridObject.parse dhtmlx.js:940
(anonymous function) :24
g dhtmlx.js :778
check
I saw in dhtmlx.js :
parse:function(a,b,c){arguments.length==2&&typeof b!="function"&&(c=b,b=null);this._data_type=c=c||"xml";a=this["_process_"+c](a);this._contextCallTimer||this.callEvent("onXLE",[this,0,0,a]);b&&b()}
I try to change the condition but I still have this error.
What’s the problem ?