Hi Márcio,
Thank you for your feature request!
We will consider its implementation especially if it becomes a popular item. As a small note of gratitude for the good idea, I have updated your Telerik points.
For the time being, you can disable the drag-and-drop operations from outside and within RadEditor's content area using this script:
<script>
function OnClientLoad(sender, args) {
//disable drag and drop of external elements and text in Design mode
$telerik.$(sender.get_contentArea()).bind("drop", function (e) {
$telerik.cancelRawEvent(e);
});
//disable drag and drop from external elements and text in HTML mode
$telerik.$(sender.get_textArea()).bind("drop", function (e) {
$telerik.cancelRawEvent(e);
});
//disable drag and drop of elements and text inside RadEditor content area
var element = document.all ? editor.get_document().body : editor.get_document();
var eventHandler = document.all ? "drop" : "dragstart";
$telerik.addExternalHandler(element, eventHandler, function (e) {
$telerik.cancelRawEvent(e);
});
}
</script>
<telerik:RadEditor OnClientLoad="OnClientLoad" ID="RadEditor1" runat="server">
<Content>
Try to drag and drop the <img src="Images/Apply.png" /> image in the end of this line.</div>
</Content>
</telerik:RadEditor>
<br />
<div style="background-color: yellow; display: inline;">Select and drag the image
<img src="Images/Apply.png" />
into the editor's content area</div>
<div style="background-color: yellow; display: inline;">Select and drag the text into the editor's content area</div>
Regards,
Rumen
Progress Telerik