Hi Team,
I am using radgrid in "put all fields in edit" mode, achieving through the below code .
protected void RadGrid1_PreRender(object sender, EventArgs e)
{
RadGrid1.AllowMultiRowEdit = true;
RadGrid1.MasterTableView.EditMode = GridEditMode.InPlace;
foreach (GridDataItem dataItem in RadGrid1.Items)
{
dataItem.Edit = true;
}
RadGrid1.Rebind();
}
Also I have a button to read and store the modification to the DB.
Now I am facing a critical issue! ,Example , I am changing a value in page 1 (not saving to the DB) and moving to next page ( by Pagination) and back to Page 1.
now my modified value is lost it shows the old value .
I am creating my grid pragmatically, Since my grid contains template column , I used "Page init" method to create my grid.
Datatable is used as Radgrid Datasource.
Ref : "http://docs.telerik.com/devtools/aspnet-ajax/controls/grid/defining-structure/creating-a-radgrid-programmatically"
Is there any way to persist my previous modified value after pagination ?
Regards
Ramesh.