Example of API in ASP.NET MVC Rich Text Editor Control
This sample demonstrates the usage of API in Rich Text Editor. Use the properties panel to change the maximum length, read only mode, disable status, to get value, enable HTML encode, select all content and get selected HTML from the Rich Text Editor.
DEMO
SOURCE
|
Max Length
|
|
|
Readonly
|
|
|
Enable
|
|
|
Enable HTML Encode
|
|
|
|
|
|
|
|
|
|
In this demo, we are going to ensure the API'S behaviour by
- Changing the value of
maxLengthtextbox to change maximum Length of character. - Clicking the
readOnlycheck box to enable/disable editable and non-editable mode of the RTE. - Clicking the
enabledcheck box to enable/disable the RTE component. - Clicking the
enableHtmlEncodecheck box to enableHtmlEncode/disableHtmlEncode the RTE component. - Clicking the
getValuebutton which shows the RTE values in the alert window. - Clicking the
getSelectionbutton which shows the selectedText in the alert window. - Clicking the
selectAllbutton selecting all text content in the RTE.