timeZoneOffsetInMinutes number Timezone offset in minutes. By default, the date picker will use the device's timezone. With this parameter, it is possible to force a certain timezone offset. For instance, to show times in Pacific Standard Time, pass -7 * 60.
onDateChange function Date change handler. This is called when the user changes the date or time in the UI. The first and only argument is a Date object representing the new date and time.
mode enum('date', 'time', 'datetime') The date picker mode.
minuteInterval enum(1, 2, 3, 4, 5, 6, 10, 12, 15, 20, 30) The interval at which minutes can be selected.
minimumDate Date Minimum date. Restricts the range of possible date/time values.
maximumDate Date Maximum date. Restricts the range of possible date/time values.
date Date The currently selected date.
static open(options) Opens the standard Android date picker dialog. The available keys for the options object are: date (Date object or timestamp in milliseconds) - date to show by default minDate (Date or timestamp in milliseconds) - minimum date that can be selected * maxDate (Date object or timestamp in milliseconds) - minimum date that can be selected Returns a Promise which will be invoked an object containing action, year, month (0-11), day if the user picked a date. If the user dism
static dismissedAction() The dialog has been dismissed.
static dateSetAction() A date has been selected.
Page 57 of 64