This is a migrated thread and some comments may be shown as answers.

RadGrid edit row

1 Answer 19 Views
Grid
This is a migrated thread and some comments may be shown as answers.
a
Top achievements
Rank 1
a asked on 03 Jun 2016, 03:44 PM
Instead of doing an in-line or pop-up edit, I would like to edit on a different page.  What's the name of the edit button click event in RadGrid, so I can redirect?

1 Answer, 1 is accepted

Sort by
0
Konstantin Dikov
Telerik team
answered on 08 Jun 2016, 12:04 PM
Hi,

Once you open an item for editing, the OnEditCommand event will fire and you could handled it for redirecting:
protected void RadGrid_EditCommand(object sender, GridCommandEventArgs e)
{
    e.Canceled = true;
    //redirect
}

In the following help article you could find detailed information on the events of RadGrid:
Hope this helps.


Regards,
Konstantin Dikov
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
Tags
Grid
Asked by
a
Top achievements
Rank 1
Answers by
Konstantin Dikov
Telerik team
Share this question
or