getValue

returns the current value of the component

Date|string getValue( [string format] );
formatstringoptional, a date format
Date|stringa Date object or a string representing the selected date

Example

webix.ui({
    view:"calendar",
    id:"calendar1"
});
 
$$('calendar1').selectDate(new Date(2012,3,30));
 
$$("calendar1").getValue(); // -> Mon Apr 30 2012 00:00:00 GMT+0300 (EEST)
 
$$("calendar1").getValue("%d %m %Y") -> '30 04 2012'

Details

The method is analogous to getSelectedDate.

See also
Back to top