Posted 06 Jan 2015 Link to this post
Posted 08 Jan 2015 Link to this post
<
telerik:RadEditor
runat
=
"server"
ID
"RadEditor1"
OnClientLoad
"OnClientLoad"
>
</
script
type
"text/javascript"
function OnClientLoad(sender, args) {
// Disable copying from Design and Preview mode
$telerik.addExternalHandler(sender.get_contentArea(), "copy", function myfunction(ev) {
alert("This content cannot be copied!");
$telerik.cancelRawEvent(ev);
});
// Disable copying from HTML mode
$telerik.addExternalHandler(sender.get_textArea(), "copy", function myfunction(ev) {
}
Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.
Posted 08 Jan 2015 in reply to Ianko Link to this post
Posted 15 Jan 2015 Link to this post
Posted 17 Jan 2015 in reply to Ianko Link to this post
Posted 20 Jan 2015 Link to this post