We use the Add/Update/Delete/Paging/Sorting/Filtering features using DataSset for the WebDataGrid.
protected void WebDataGrid1_RowUpdated(object sender, Infragistics.Web.UI.GridControls.RowUpdatedEventArgs e)
{
IDPair id = e.RowID;
GridRecord row = this .WebDataGrid1.Rows.FromIDPair(id);
//update the row in the database
}
Can You please give the code for update the row into the database.I didn't know how we get the column values.Please Help..........