point

enables/disables an arrow for the datepicker

boolean point;

Example

webix.ui({
    view:"datepicker", 
    value: new Date(2012, 6, 8), 
    label: "Date", 
    timepicker: true,
    width: 300,
    point:true
});

Details

By default a datepicker is rendered without an arrow.

Back to top