sets the initial value for the control wrapped into FormInput
// 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"
}
]
});