Hi,
I'm using a RadGrid with a GridClientSelectColumn.
If I call server-side the Grid.Rebind() method, I can preserve the selected items:
But how can I do this when the user clicks the "Update" button (which fires the RebindGrid command)?
Thanks!
I'm using a RadGrid with a GridClientSelectColumn.
If I call server-side the Grid.Rebind() method, I can preserve the selected items:
var selectedItems = Grid.MasterTableView.GetSelectedItems() .Select(item => int.Parse(item["idCol"].Text)) .ToList();Grid.Rebind();foreach (GridDataItem item in Grid.MasterTableView.Items){ item.Selected = selectedItems.Contains(int.Parse(item["idCol"].Text));}But how can I do this when the user clicks the "Update" button (which fires the RebindGrid command)?
Thanks!
