Categories | Question details Back To List | ||
Converting XML into CSV Hey guys. I want to convert XML style of dhtmlxgrid into csv. I do not want to convert grid into csv instead its XML. How can i do it. If it is not possible can you tell me a event of grid that can be invoked after loading xml file in grid. Answer posted by dhxSupport on Oct 21, 2009 01:27 >>I want to convert XML style of dhtmlxgrid into csv CSV format doesn't support add any additional data except cell's values >>can you tell me a event of grid that can be invoked after loading xml file in grid. If you need call function after grid was completely loaded you can use 2nd parameter of load() method: mygrid.load(url,func); ... function func(){ //do smth; } Also you can use "onXLE"\"onXLS" events. Please find more information here http://dhtmlx.com/dhxdocs/doku.php?id=dhtmlxgrid:events |