Hi Barry,
Please, try the solution attached
here. Here it is the used code in it:
<asp:TextBox ID="TextBox1" TabIndex="1" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox3" TabIndex="4" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox4" TabIndex="5" runat="server"></asp:TextBox>
<telerik:RadEditor OnClientLoad="OnClientLoad" ID="RadEditor1" runat="server">
<ImageManager ViewPaths="~/Images" UploadPaths="~/" />
</telerik:RadEditor>
<asp:TextBox ID="TextBox2" TabIndex="2" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox5" TabIndex="6" runat="server"></asp:TextBox>
<asp:TextBox ID="TextBox6" TabIndex="7" runat="server"></asp:TextBox>
<script type="text/javascript">
function
OnClientLoad(editor, args)
{
var buttonsHolder = $get(editor.get_id() + "Top"); //get a reference to the top toolbar zone of the editor
var buttons = buttonsHolder.getElementsByTagName("A"); //get a
reference to all A elements on the toolbar and disable the tabbing
trough them
for (var i=0; i< buttons.length; i++)
{
var a = buttons[i];
a.tabIndex = -1;
a.tabStop = false;
}
}
Telerik.Web.UI.Editor.CommandList.InsertTab = function(commandName, editor, oTool)
{
setTimeout(function()
{
$get(editor.get_id() + "_ModesWrapper").focus();
}, 0);
};
</script>
If your scenario is other, please open a support ticket and send a fully working project that demonstrates the problem and specify which behavior you expect to see. I will try to provide a solution after that.
All the best,
Rumen
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.