Hi!
In dhtmlx Sidebar 6.4.3, use the function dhtmlxGrid 5.2.0 gridArea.loadXml().
ex) gridArea.loadXML(${root}+xmlFileName);
dhtmlx/dhtmlxGrid/codebase/dhtmlx.js
->
load:function(url, call, type){
…
this.xmlLoader = function(xml){
(!that.call Event) returns;
if (!that.callEvent) return;
that"process"+type;
if (!that._contextCallTimer)
that.callEvent("onXLE", [that,0,0,xml.xmlDoc,type]);
if (call){
call();
call=null;
}
…
};
The grid contents are not loaded without this function being executed.
but dhtmlxGrid 5.2.0 version gridArea.loadXML (${root}+xmlFileName) without sidebar 6.4.3 version;
The content comes out well normally.
What’s the solution?