Hello,
To persist items selected across paging, I used an arraylist and the code works fine.
But the proble is once I 've added some griditems and checked the gridclientselectcolumn. in edit mode, I need to retrieve the selecteditems from the array list which is also I found out.
But now the problem is I retrieve the items from database and bind them to the grid in edit mode but if user deselects an item which is already saved, how do I get that.
And also pls let me know why the below code is not working.
m_radRecipientGrid.Mastertableview.Allowpaging = false;
do some coding
m_radRecipientGrid.Mastertableview.Allowpaging = true;
But my grid never disables paging. what should I do to temporarily disable paging , do some work and then enable agin.
To persist items selected across paging, I used an arraylist and the code works fine.
But the proble is once I 've added some griditems and checked the gridclientselectcolumn. in edit mode, I need to retrieve the selecteditems from the array list which is also I found out.
But now the problem is I retrieve the items from database and bind them to the grid in edit mode but if user deselects an item which is already saved, how do I get that.
And also pls let me know why the below code is not working.
m_radRecipientGrid.Mastertableview.Allowpaging = false;
do some coding
m_radRecipientGrid.Mastertableview.Allowpaging = true;
But my grid never disables paging. what should I do to temporarily disable paging , do some work and then enable agin.