Hi,
i have a radgrid with allowpaging = true and allowmultiplerowedit = true. I have a checkbox column in the grid. When i load the grid in edit mode the values of the checkboxes will be changed by the user. User can check or uncheck multiple checkboxes across pages at one go. But when i try to retrieve the edited values in server side using the below snippet i am getting only the edited values of current page.
Please help me with a sample code snippet, so that i can get the edited values in other pages as well.
Thanks,
Saravanan K
i have a radgrid with allowpaging = true and allowmultiplerowedit = true. I have a checkbox column in the grid. When i load the grid in edit mode the values of the checkboxes will be changed by the user. User can check or uncheck multiple checkboxes across pages at one go. But when i try to retrieve the edited values in server side using the below snippet i am getting only the edited values of current page.
foreach
(GridEditableItem editedItem
in
grid.EditItems)
{
Hashtable newValues =
new
Hashtable();
//The GridTableView will fill the values from all editable columns in the hash
grid.MasterTableView.ExtractValuesFromItem(newValues, editedItem);
if
(
true
== (
bool
)newValues[
"myCheckBoxColumn"
])
{
// processing logic
}
}
Please help me with a sample code snippet, so that i can get the edited values in other pages as well.
Thanks,
Saravanan K