I have a grid with an edit column
<telerik:GridEditCommandColumn ButtonType="ImageButton" >
<HeaderStyle Width="10%" />
</telerik:GridEditCommandColumn>
When the user clicks on it, they are send to a different window to edit the item
protected void gridGroups_ItemCommand1(object source, GridCommandEventArgs e)
{
if (e.CommandName == "Edit")
{
Response.Redirect(...);
}
}
When the user returns to the page with the grid on it and clicks on edit again nothing happens. It doesn't go into the ItemCommand event handler at all?
Anyone seen this behaviour before?
Thanks
Emmet
