Append Grid via parse()

Hi.

Is there any way to append data to a grid using the grid.parse(xml_string)? I don’t need to use the updateFromXML since the string is still local on the client ( ie no URL to get). I can get one row into my grid but as soon as I try grid.parse(xml_string) again it’s clearing out the grid first it seems.

Please, try to call
some_grid._refresh_mode=[true,insert_new,del_missed];
before the parsing new data to simulate updatefromXML() method.

Hi.

Thanks that helped. I also made sure rows had well defined id’s as well which solved my problem.