When I create my grid, I use my existing XML (not in the default format used by grid). This requires that I add the following line:
mygrid.setColumnIds(“name,staffing,workstatus,deliveries,comments,equipment”)
This generates the grid perfectly, but after the user makes changes to the data from within the grid, the XML returned by serialization is in the standard grid format.
For example,
<?xml version="1.0" encoding="ISO-8859-1"?>
Imasub Enterprises Inc.
2 laborers, 1 foreman
On schedule…
Is being returned as,
<?xml version="1.0"?>
Imasub Enterprises Inc.
2 laborers, 1 foreman
On schedule…
Is it possible for serialization to return XML from a grid in the same format that was used to generate the grid? Or would you recommend that I not use serialization to accomplish this?
Is it possible for serialization to return XML from a grid in the same format that was used to generate the grid
Such feature currently not supported, grid can serialize only to native formats ( native XML format or CSV )