Categories | Question details Back To List | ||
dhtmlx treegrid serialization Hi i want treegrid to serialize only changed rows... mygrid.setSerializationLevel(true,true,false,false,true); mygrid .serialize(); output is coming as <?xml version="1.0"?><rows></rows> even if i modify rows. Thanks n Regards Reshmi Answer posted by Support on Dec 17, 2008 03:19 In case of TreeGrid this funcitonality may be tricky, because TreeGrid need mantain rows hierarchy during XML serialization, so if parent row has not "changed" flag - it will not be included in serialization, and as result all chlild rows will not be included as well, without relation to their "changed" flag. |