Hi,
Thanks for your attention,I am now getting a problem with radgrid,the requirements : I use the method to keep the checkbox state,that is the selected rows state,while paging.this method can reference the url:http://www.telerik.com/help/aspnet-ajax/grid-persist-selected-rows-client-sorting-paging-grouping-filtering.html, but now,I want to the other radgrid named selectedItems,can record the former radgrid's selected rows at the same time,for example,when you selected one row of the former radgrid,the selectedItems radgrid will add the selected row;when the user cancel selected row,the selectedItems will remove the row;when the user select the all selected button(in the header of the grid which can control the current page's rows),the selectedItems radgrid control will add the whole selected rows in time,what should I do now?another question is,if the former radgrid contans [ "id","name""sex"],but the selectedItems contains the["id","name","address"],here,we suppose the id is the keyname,and an item contains fields:["id","name","sex","address"],
the former radgrid control's record :
Thanks for your attention,I am now getting a problem with radgrid,the requirements : I use the method to keep the checkbox state,that is the selected rows state,while paging.this method can reference the url:http://www.telerik.com/help/aspnet-ajax/grid-persist-selected-rows-client-sorting-paging-grouping-filtering.html, but now,I want to the other radgrid named selectedItems,can record the former radgrid's selected rows at the same time,for example,when you selected one row of the former radgrid,the selectedItems radgrid will add the selected row;when the user cancel selected row,the selectedItems will remove the row;when the user select the all selected button(in the header of the grid which can control the current page's rows),the selectedItems radgrid control will add the whole selected rows in time,what should I do now?another question is,if the former radgrid contans [ "id","name""sex"],but the selectedItems contains the["id","name","address"],here,we suppose the id is the keyname,and an item contains fields:["id","name","sex","address"],
the former radgrid control's record :
id name sex
'1001' 'Tony' 'male'
'1002 ' 'Suny' 'female'
now,When I select the fist row,id is '1001',then the following selectedItems will add the row:
id name address
'1001' 'Tony' 'Shanghai,China'
of couse,when I re-select the former radgrid's row,with the id is '1001' ,the selectedItems will remove it accordingly.Please had better not use the session,if you think the session is available,please account for that,I am a rookie,Thanks!