if we select any text within a <SPAN> and do 'cut' operation and paste it somewhere else then it introduce the nested <FONT> tag at the position where we paste it. It is creating a problem for our application.
We are useing
We are useing
RadEditor1.Document.execCommand(
"Cut", false, null);
RadEditor1.Document.execCommand("Copy", false, null);
RadEditor1.Document.execCommand("Paste", false, null);
Also i tried to find any client event for RadEditor but there is no such command that support cut copy paste.
Is there any Client side command for Editor itself that will not introduce this extra <FONT> tag on these Cut, Copy, Paste operation.
Thanks in advance for any fruitfull suggestion.