I have a question, of how to save multiple rows in a RadGrid.
Example.
This loops through the entire RadGrid editable mode and assigned to all fields.
I want to achieve something similar but obviously making a save in the datatable I give it as source.
Thanks
Example.
This loops through the entire RadGrid editable mode and assigned to all fields.
foreach
(GridDataItem item
in
RadGrid1.Items)
{
item.Edit =
true
;
}
RadGrid1.MasterTableView.Rebind();
I want to achieve something similar but obviously making a save in the datatable I give it as source.
Thanks