refresh

repaints richtext editor

void refresh();

Example

webix.ui({
    container:"box",
    view:"form", 
    elements:[
        { view: "richtext", id: "rt1", value: "My text" }
    ]
});
...
$$("rt1").define("value","New text");
$$("rt1").refresh(); // value:"My text" -> value:"New text"

See also
Back to top