<rows>
<row id="some1"><cell>value 1,1</cell><cell>value 1,2</cell></row>
<row id="some2"><cell>value 2,1</cell><cell>value 2,2</cell></row>
</rows>
row@id - the mandatory attribute, must be unique for each row; the row and cell tags may contain additional attributes which will be processed in the default way.
In the dynamic loading mode
<rows total_count="50000" pos="1230">
<row id="some1230"><cell>value 1,1</cell><cell>value 1,2</cell></row>
<row id="some1231"><cell>value 2,1</cell><cell>value 2,2</cell></row>
</rows>
<rows>
<row id="some1">
<cell image="some.gif">value 1,1</cell><cell>value 1,2</cell>
<row id="some11"><cell>child value 1</cell><cell>child value 2</cell></row>
</row>
<row id="some2"><cell>value 2,1</cell><cell>value 2,2</cell></row>
</rows>
Dynamic loading
<rows parent="id">
<row id="some1" xmlkids="1">
<cell image="some.gif">value 1,1</cell><cell>value 1,2</cell>
</row>
<row id="some2"><cell>value 2,1</cell><cell>value 2,2</cell></row>
</rows>
<tree>
<item id="some" text="name">
<item id="child1" text="name 1"/>
<item id="child2" text="name 2"/>
</item>
</tree>
In case of dynamic loading
<tree id="id">
<item id="some" text="name" childs="1">
</item>
</tree>
<data>
<option value="some">Some label</option>
<option value="other">Other label</option>
</data>
In case of dynamic loading:
<data add="true">
<option value="some">Some label</option>
<option value="other">Other label</option>
</data>
If the "pos" parameter has been provided, the response must contain the data@add attribute to mark that it's not a new set of values, but an addition to the existing one.
Back to top