RTE Paste Cleaner in JQuery RichTextEditor widget
10 Aug 20172 minutes to read
While copy pasting content from MSWord document, the content will be processed in the paste action event.pasteCleanupSettings API can be used for removing unwanted elements.
This will convert an unformatted html element (MOS XML format) content to a proper html element.Table elements also will be converted with proper elements.
Options |
Description |
---|---|
|
List Conversion option convert the list elements into a proper format pasted from MSWord document to editor. |
|
Clean Css is used to clean the unwanted css in the elements pasted from MSWord document to editor |
|
Remove styles will remove all styles in the elements pasted from MSWord document to editor. |
|
Clean Elements is used to clean the unwanted elements pasted from MSWord document to editor. |
<textarea id="texteditor">
<p><b>Description:</b></p>
<p>The Rich Text Editor (RTE) control is easy to render in the
client side. Customers can easily edit the contents and get the HTML content for
the displayed content. A rich text editor control provides users with a toolbar
that helps them to apply rich text formats to the text entered in the text
area. </p></textarea>
<script>
$("#rteSample").ejRTE({
pasteCleanupSettings:{
listConversion:true,
cleanCSS:true,
removeStyles:true,
cleanElements:true
}
});
</script>
Pasted Content before Cleanup:
Pasted Content after Cleanup: