value

sets the initial value for the control wrapped into FormInput

any value;

Example

// using ckeditor as a forminput control
var editor = {
    view:"ckeditor"
};
 
webix.ui({
     view:"form",
     rows:[
        { 
            view:"forminput", 
            label:"Rich Editor", 
            body:editor, 
            value:"Some value here"
        }               
     ]
});

Related samples

See also
Back to top