getValue

returns the current value of the richtext editor

string getValue();
stringthe current value of the control

Example

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

Details

The returned value of the control may be:

See also
Back to top