I have a GridHTMLEditorColumn in my grid. When doing editing, it is the only column that tab does not work. Does anyone know how to tab out of this editor column or is there any workaround for that?
Thanks!
Ying
2 Answers, 1 is accepted
0
Tsvetoslav
Telerik team
answered on 01 Jul 2009, 03:11 PM
Hi Ying,
In order to achieve this scenario:
1. Define the following client event handler:
<script type="text/javascript">
function OnClientLoad(editor, args)
{
editor.removeShortCut("InsertTab");
}
</script>
2. Add an event handler to the grid's ItemCreated event as follows: