Hi,
I am using OnClientPasteHtml event of RadEditor, it is fired in IE & Mozilla workinng fine. But the same event is not working on Safari.
Can someone please tell me any work around for this?? My code is like below.
javascript function:
Regards
Chinnayya
I am using OnClientPasteHtml event of RadEditor, it is fired in IE & Mozilla workinng fine. But the same event is not working on Safari.
Can someone please tell me any work around for this?? My code is like below.
<telerik:RadEditor ID="RadEditor1" runat="server" ToolsFile="~/Tools/ToolsFile.xml" SkinId="Vista" OnClientLoad="OnClientLoad" OnClientPasteHtml="PasteHeadings" Width="700px" Height="100%">
</telerik:RadEditor>
javascript function:
function
PasteHeadings(editor,args)
{
if(document.getElementById("pnlOutline").style.display == "block")
{
var strContent= args.value;
if((strContent.search(/<H1/i) != -1))
{
fnOutline(
false);
}
}
}
Regards
Chinnayya
