Hi all,
I am implementing the edit mode in a RadGrid.
The code for a normal ASP.NET datagrid is simple and it boils down to
protected void MyDataGrid_Edit(object sender, DataGridCommandEventArgs e)
{
MyDataGrid.EditItemIndex = e.Item.ItemIndex;
BindGrid()
}
BUT i am not finding the exact equivalent for "MyDataGrid.EditItemIndex = e.Item.ItemIndex" in a RADGRID.
it throws a compilation error if i write
radGrid.EditItemIndex = e.Item.ItemIndex
So can anyone send me the equivalent for the below line for a RadGrid ?
MyDataGrid.EditItemIndex = e.Item.ItemIndex
Any alternative solutions welcome
Thanks,
Sandeep