setValue

sets a new value for the control

void setValue(any value);
valueanya new value for the control

Example

webix.ui({
   view:"form", 
   rows:[
      { 
        view:"forminput", 
        id:"forminput1", 
        label:"Rich Editor", 
        body:editor
      }
    ]
});
 
$$("forminput1").setValue("Some value here");

See also
Back to top