I have a grid with Updating feature turn on using the GridModel class, but when I click on the row the row gets in edit mode and all the data in the row gets deleted. Can you please help with this?
List<GridColumn> columns = new List<GridColumn>()
{
new GridColumn("ID", "ID", "int", "100px"),
new GridColumn("Code", "Code", "string", "100px"),
new GridColumn("Description", "Description", "string", "100px"),
}
GridModel model = new GridModel("grid1", "ID", columns, Url.Action("GetList/"));
GridUpdating updating = new GridUpdating();
model.Features.Add(updating);
return
PartialView(model);
Hi,
You can see post:
http://forums.infragistics.com/forums/t/66092.aspx
Thanks,
Nadia