Hello everybody,
I use dhtmlx grid component to load XML data in my grids. The XML is loaded by a classic asp.
I tried to use the onXLE event function to read asp vars generated by my page which generates the XML data but I can’t read them. Even if it’s unsynchronous loading I thought I could read those data after the loading.
I’m stuck here, can somebody help me ?
Thanks !
Obviously my code is written before the XML is loaded… stupid question, can somebody delete that please? I can’t, well… I don’t find any way to delete it myself
You may try to use the callback of the load() method.
For example:
mygrid.load(url,function(){
// function will be after the data is completely loaded to the grid
})
the code from the onXLE event also will be executed only after the data is loaded to the grid.
If any problem still occurs for you please, feel free to ask.