I am using Radeditor. i need to get the content from clip board and set to editor conten.
i am get the content. but i set the content to editor page, it shows empty.
i am using the following code.
var content = window.clipboardData.getData("Text");
if (content != null) {
editor.set_html = content;
so i try to bind the content in server side. so i called the server side function using pagemethods.i set EnablePageMethods ="true" in script manager.
but it shows page methods is undefined.
my first priority is set the content using java script.
How to do this?
Thanks,
Pooja