I have a grid which load it's content from xml string (editurl: "clientArray",datatype: 'xmlstring').
Is it possible to select the rows i want the grid to load according to the value inside the xml string? (for example:
<root>
<row>
<number>1</number>
<test>546</test>
<i_u>1</i_u>
</row>
<row>
<number>2</number>
<test>543</test>
<i_u>2</i_u>
</row>
<row>
<number>4</number>
<test>544</test>
<i_u>2</i_u>
</row>
<row>
<number>5</number>
<test>545</test>
<i_u>1</i_u>
</row>
I want the grid to show only the rows where "i_u" tag is with the value of 1.
If possible , how can this be done?
Thank's In Advance.