Load 2 Separate DataGrid's from the Same XML

Are there any built in procedures available to load 2 separate dataGrid’s from a single XML segregating them based on a field or condition on the XML String??



There is no native solution , but next can be done

a) each grid can have different set of xml settings
dhtmlx.com/docs/products/dhtmlxG … oadingdata
b) xml can be formed in such way, that it will contain one kind of row tags for grid A and different kind of rows for grid B

gridA.xml={
top: “rows”,
row: “./rowA”,
cell: “./cell”,
s_row: “row”,
s_cell: “cell”,
row_attrs: [],
cell_attrs: []
}

gridA.xml={
top: “rows”,
row: “./rowB”,
cell: “./cell”,
s_row: “row”,
s_cell: “cell”,
row_attrs: [],
cell_attrs: []
}

In XML


… data for first grid
… data for second grid