or
| <telerik:RadEditor ID="rdEditorAppMethods" runat="server" Height="385px" Width="330px" EditModes="Design " |
| EnableResize="False" Skin="Office2007" ToolsFile="~/Editor/ToolsFile.xml" OnClientCommandExecuting="OnClientCommandExecuting1" |
| ContentAreaCssFile="EditorContentArea.css"> |
| <Content></Content> |
| </telerik:RadEditor> |

What I am trying to do is automatically select the first row (if there is one) after the cancel link of the insert has been selected. I can't seem to catch the event client side and am using the Server Side CancelCommand to set a flag that selects the first row in the PreRender event. This works but then I lose the context menu.
Any Ideas?
Regards
Roger
if (e.CommandName == "Edit")
e.Item.Edit =
false;
}
Thanks!