multiple grids and different xml.top

I have 2 grids in one page.
But, they has different type of xml(xml.top and xml.row)
One has xml.top=“grid-rows” and xml.row="./row-data"
And the other has xml.top=“rows” and xml.row=“rows”

When I initializing first grid and bind data into grid it is OK.
And second grid is OK too.

But, When I rebind xml data to first grid, xml.top has changed to second grid’s xml.top
Is it normal?

This is the expected behavior.
In case of using several grids with different data format you need to create a custom data format.
Here is the tutorial:
docs.dhtmlx.com/doku.php?id=dhtm … s_creation

OK, I see. Thanks a lot.

I know that way(your link. custom parser).
I have to find another way to solve my problem…

Thank you any way.