i have a issue about checkbox in the datagrid with datapaging componet.i use "<dmf:datapaging>" to do page,but i found that i selected some record in current page(ex:page 1) ,then after i click nextPage button and click previous button back to page which i has selected check, the checked checkbox is gone.
how to keep the checked checkbox still checked states.....
thank U for your help....appreciately.....
code as follow:
<dmf:datagrid name="dgData" rowselection="false" width="100%" paged="true" cssclass="queryResult">
<dmf:datagridRow>
<dmf:datagridRowTd>
<dmf:checkbox name="check" value="false" onclick="itemSelected" runatclient="true">
<dmf:argument name="objectId" datafield="r_object_id"/>
</dmf:checkbox>
</dmf:datagridRowTd>
<dmf:datagridRowTd>
<dfm:label datafiled="r_object_id"/>
</dmf:datagridRowTd>
</dmf:datagridRow>
<dmf:datapaging name="gridPagers" ></dmf:datapaging>
</dmf:datagrid>