returns the current value of the control
string | the current value of the control |
webix.ui({
view:"form",
rows:[
{
view:"forminput",
id:"forminput1",
label:"Rich Editor",
body:editor,
value:"Some value here"
}
]
});
$$("forminput1").getValue(); // returns "Some value here"