Hello,
I'd like to see if it's possible to use a dynamically generated RadEditor to return a plain text string all from the server side.
Now I realize that the StripFormattingOptions is only going to work on a client side paste event. So I am wondering if there is a way to either use client side script to get the plain text or some other method that i'm missing.
Hopefully that makes sense! Thanks,
Sean
I'd like to see if it's possible to use a dynamically generated RadEditor to return a plain text string all from the server side.
Dim
myHTML as
String
=
"Some text <strong>with formatting.</strong>"
Dim
myEditor as
New
RadEditor
myEditor.Content = myHTML
myEditor.DataBind()
myEditor.StripFormattingOptions = EditorStripFormattingOptions.All
myHTML = myEditor.Content
Now I realize that the StripFormattingOptions is only going to work on a client side paste event. So I am wondering if there is a way to either use client side script to get the plain text or some other method that i'm missing.
Hopefully that makes sense! Thanks,
Sean