Telerik Version we are using:2010.3.1317 we are using .net framework 2.0 and cannot upgrade to 3.5 or 4.0 at the moment.
and the version we are using, i think, is the latest one for 2.0.
Problem Detail:
we have an user control .ascx(Editor) that is wrapping RadEditor.
now using chrome or safari, on pressing "Tab" key it inserts:
<span class="Apple-tab-span" style="white-space:pre"> </span>
to overcome this problem i decided to override Telerik.Web.UI.Editor.CommandList["InsertTab"] event so on .ascx page i did following:
<script type="text/javascript">
if (typeof (Telerik) != 'undefined') {
Telerik.Web.UI.Editor.CommandList["InsertTab"] = function(commandName, editor, args) {
//alert('success");
editor.pasteHtml(" ");
};
}
</script>
Which is working fine in IE9 but not in chrome/safari. i tried using an alert message but it simply not firing the code.
I would appreciate any/all help i could get.