Sending XML Message back to Server

Hi ,



Is this possible to send grid data in single shot to the server using some xml or some other way.

You can serialize grid as XML
    var xml = grid.serialize();

You can use any method to send serialization results back to server, including built in AJAX functionality, the code line above will send xml data by POST

    (new dtmlXMLLoaderObject(null,null,true)).loadXML(“some.url”,true,“grid=”+encodeURIComponent(xml));