How to get the XML of a sorted grid?
Is it possible to get the sorted XML after I sort the data in a grid?
for example:
var obj = new Active.Controls.Grid;
var table = new Active.XML.Table;
table.setXML(xml);
obj.setDataModel(table);
obj.Sort(2, "descending");
After this I want to be able to get the sorted Xml so I can submit this back to the server.
If I check table.getXML().xml it is still in it's original state.
Thanks in advance
for example:
var obj = new Active.Controls.Grid;
var table = new Active.XML.Table;
table.setXML(xml);
obj.setDataModel(table);
obj.Sort(2, "descending");
After this I want to be able to get the sorted Xml so I can submit this back to the server.
If I check table.getXML().xml it is still in it's original state.
Thanks in advance
Robin
January 8,