getValue

returns the current value of the control

object getValue();
objectthe current value of the control

Example

webix.ui({
    view:"daterangepicker", 
    id: "mydaterange",
    format:"%Y-%F-%d %H:%i", 
    suggest:{
        view:"daterangesuggest",
    }
});
 
$$("mydaterange").getValue(); // object with start and end dates

Details

The returned value of the control may be:

See also
Back to top