JavaScript/jQuery HtmlEditor - converter
Type:
| undefined
Default Value: undefined
index.js
- const converter = {
- toHtml: (value) => {
- const result = */ Convert the value and return a string */
- return result;
- },
- fromHtml: (value) => {
- const result = /* Convert the value and return a string */
- return result;
- }
- }
- $('#editor').dxHtmlEditor({
- converter,
- });
Feedback