This is a combined version of DatePicker iOS and Android plugin for Cordova/Phonegap 3.0.
-
Original iOS version: https://github.com/sectore/phonegap3-ios-datepicker-plugin
-
Original Android version: https://github.com/bikasv/cordova-android-plugins/tree/master/datepicker
-
Make sure that you have Node and Cordova CLI or PhoneGap's CLI installed on your machine.
-
Add a plugin to your project using Cordova CLI:
cordova plugin add https://github.com/VitaliiBlagodir/cordova-plugin-datepicker
Or using PhoneGap CLI:
phonegap local plugin add https://github.com/VitaliiBlagodir/cordova-plugin-datepicker
var options = {
date: new Date(),
mode: 'date'
};
datePicker.show(options, function(date){
alert("date result " + date);
});
The mode of the date picker.
Type: String
Values: date
| time
| datetime
(iOS only)
Default: date
Selected date.
Type: String
Default: new Date()
Minimum date.
Type: Date | empty String
Default: (empty String)
Maximum date.
Type: Date | empty String
Default: (empty String)
Shows or hide dates earlier then selected date.
Type: Boolean
Values: true
| false
Default: true
Shows or hide dates after selected date.
Type: Boolean
Values: true
| false
Default: true
Label of done button.
Typ: String
Default: Done
Hex color of done button.
Typ: String
Default: #0000FF
Label of cancel button.
Type: String
Default: Cancel
Hex color of cancel button.
Type: String
Default: #000000
X position of date picker. The position is absolute to the root view of the application.
Type: String
Default: 0
Y position of date picker. The position is absolute to the root view of the application.
Type: String
Default: 0
- PhoneGap 3.0 or newer / Cordova 3.0 or newer
- Android 2.3.1 or newer / iOS 5 or newer
var options = {
date: new Date(),
mode: 'date'
};
datePicker.show(options, function(date){
alert("date result " + date);
});