Objective
I would like to expose html editing and paste to my rich editor fields for my application, but I only want specific tags to be published.
Other Editors
For my previous applications, I have been using the Tiny MCE Editor for my rich text editing. There is a feature in tinymce that allows me to specify which tags and tag attributes are "acceptable" for publishing.
Example
tinyMCE.init({
...
valid_elements : "a[href|target=_blank],strong/b,div[align],br"
});
When a user submits a page, the editor strips out any markup that is not in the approved tag list.
does Telerik have a similary property.
I can do this is dotnet on postback using regex, but I would prefer to have it built into the control.
Thanks