setValue

sets a new value for the component

void setValue(object value);
valueobjecta new value for the control

Example

webix.ui({
    view:"daterangepicker", 
    id: "mydaterange",
    format:"%Y-%F-%d %H:%i", 
    suggest:{
        view:"daterangesuggest",
    }
});
 
$$("mydaterange").setValue({
    start:webix.Date.monthStart(new Date()),
    end:webix.Date.monthStart(webix.Date.add(new Date(), 1, "month"))
}); // sets new value

Details

The second parameter can be of any type (from a string to an object). config will be passed to the onChange event as the last parameter.

See also
Back to top