Cordova Plugin for showing a native date, time or datetime picker.
cordova plugin add skwas-cordova-plugin-datetimepicker
or for latest
cordova plugin add https://github.com/skwasjer/skwas-cordova-plugin-datetimepicker.git
- Android 4.4 and higher
- iOS 9 and higher
show(options)
Show the plugin with specified options.
show(options, successCallback, errorCallback)
Show the plugin with specified options and callbacks.
This was the original way to call the plugin, and is kept for compatibility.
Note: The
successCallback
anderrorCallback
respectively will be ignored if thesuccess
orerror
callback is provided on theoptions
argument.
When providing the
clearText
property, an extra button is shown with intent to clear the current date. When the user taps this button, thesuccess
callback will be called with anundefined
date. From a UI perspective, this button should be hidden by application code when no date is currently set by omitting the property, but this is up to you.
Name | Type | Default | Description |
---|---|---|---|
theme | int | Theme_DeviceDefault_Dialog | android.R.style theme |
is24HourView | boolean | true | Use a 24 hour clock |
On Lollipop and upwards the date and time pickers changed to calendar and radial pickers. If you want to use spinners (for example to use
minuteInterval
), use a built-in android.R.style theme that shows a date and time picker with spinners or read up here how to customize this.
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
var myDate = new Date(); // From model.
cordova.plugins.DateTimePicker.show({
mode: "date",
date: myDate,
success: function(newDate) {
// Handle new date.
console.info(newDate);
myDate = newDate;
}
});
}
hide()
Hide the date time picker.
If the picker is currently being shown and a cancel-callback was provided in the options, the callback will be called when the picker is hidden.
cordova.plugins.DateTimePicker.hide();
For a list of all changes see here.
- Cordova 8 or higher
- Android:
- Android SDK
- AndroidX support must be enabled:
[email protected]
Requires additional plugincordova-plugin-androidx
.[email protected]
Requires<preference name="AndroidXEnabled" value="true" />
to be added toconfig.xml
.[email protected]
AndroidX is enabled by default.
- Xcode 11 or higher (iOS)
- Node 10.x or higher