Categories | Question details Back To List | ||
treegrid single xml source Is it possible to load a single XML file for the treegrid and not use dynamic loading for children? I did not see the format for this in the documentation. Answer posted by Support on Oct 31, 2008 07:48 Sure, it possible. There is no any additional structures necessary, just nest row tags to organize hierarchy. <rows> <row id="parent"> <cell>cell of parent<cell> <row id="child"> <cell>cell of child<cell> </row> </row> </rows> |