setValue

sets a new value for the richtext control

void setValue(string value);
valuestringa 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
Back to top