setValue

specifies a value for Rich Text Editor

void setValue(string value,string type);
valuestringthe value to be set for the component
typestringoptional, the format of the applied value. It can be: "html", "text", "raw" (Richtext AST content)

Example

const text = 
`<p>Hello World</p>
<p><a href="https://docs.webix.com/desktop__richtext.html">Rich Text Editor</a></p>
<p>Sample text</p>`;
 
$$("editor").setValue(text);

Related samples

Details

If the type parameter isn't specified, the method tries to treat content as HTML.

See also
Back to top