Categories | Question details Back To List | ||
dhtmlxgrid Hi, i've to generate a new xml based on the number of rows that were modified in the grid. Is it possible to do just that. Answer posted by Support on Feb 20, 2009 05:18 Serialization has an option which allow to serialize only rows which has been modified. mygrid.setSerializationLevel(false,false,false,false,true); var xml = mygrid.serialize(); //only changed rows |