Hi,
when I call pasteHtml of a RadEditor instance the text gets inserted as expected but when I click inside the editor I get this error:
"Could not complete the operation due to error 800a025e".
What does this mean? Did I do something wrong? Here's the code which performs
the pasteHtml:
<telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> |
<script type="text/javascript"> |
function insertPlaceholder() { |
var placeholerSelector = $find("<%= PlacholderSelectBox.ClientID %>"); |
var editor = $find("<%= TemplateEditor.ClientID %>"); |
editor.pasteHtml(placeholderSelector.get_value()); |
} |
</script> |
</telerik:RadCodeBlock> |
Best Regards,
Robert