Hi,There
I m using Prometheus RadEditor and I m trying to Paste the Text from CustomDialogBox..But problem is it add extra space at the end
for E.G
Should work like this:
ABCDEG Paste Text HIJKLM
Result:
ABCDEG
Paste Text
HIJKLM
I have referred below link
http://www.telerik.com/DEMOS/ASPNET/Prometheus/Editor/Examples/CustomDialogs/DefaultCS.aspx
IF i use editor.PasteHtml(args.questionText); this line of code its working perfect but i use
editor.PasteHtml("<div overflow=\"auto\" class=\"BmiNonEditable\">" + args.questionText +"</div>");
it didn't paste the text on right spot.. and i really want to use this DIV tag..
cuz i m applying style to paste text and didn't allow to change the paste text (only formatting is allowed)
And My Class Style has nothing in it.
<
style type="text/css">
.BmiNonEditable{}
</style>
