setValue of ui.richtext, Methods Webix Docs

StartAPI Referenceui.richtextMethods

sets a new value for the richtext control

void setValue(string value);

value

stringa new value for the richtext control

Example

webix.ui({
    view:"form", 
    elements:[
        { view: "richtext", id: "rt1", value: "Some text" }
    ]
});
 
$$("rt1").setValue("Some text");

See also

  • API

  • Articles

  • Back to top