More information on this topic is available in the documentation section:
/aw.xml.table/.
Hi,
I'd like to know if this is possible to merge XML tables (same structure)? I need to add some records in my grid, and keep the previous ones?
Is it better to use JSON in this case?
var req = new AW.HTTP.Request;
req.setURL(url);
req.setAsync(false);
req.response = function(data) {
var newXMLdata = this.getResponseXML();
var currentXML = dataTable.getXML();
var rootFrom = newXMLdata.getElementsByTagName("root")[0];
var rootTo = currentXML.getElementsByTagName("root_list")[0];