Hi ,
I am converting asp grid view to rad grid for my application. I have edit, delete functionality for the rows. Here is my row editing code
protected void GridViewDocs_RowEditing(object sender, GridViewEditEventArgs e)
{
RegularExpressionValidatorVersion.Enabled = false;
this.UpdateId = Convert.ToInt32(GridViewDocs.DataKeys[e.NewEditIndex].Value);
int rowIndex = Convert.ToInt32(e.NewEditIndex);
GridViewRow row = GridViewDocs.Rows[rowIndex];. . .
I just need to take the updateid value and row values in rad grid .
Can you help me how to modify that in my radgrid editing functionality ?
. .