1.1.3 • Published 6 years ago

@covve/cordova-plugin-datetimepicker v1.1.3

Weekly downloads
-
License
MIT
Repository
github
Last release
6 years ago

npm version

@covve/cordova-plugin-datetimepicker

Cordova Plugin for showing a native date, time or datetime picker.

Installation

cordova plugin add @covve/cordova-plugin-datetimepicker

or for latest

cordova plugin add https://github.com/covve/skwas-cordova-plugin-datetimepicker.git

Supported platforms

Android 4 and higher iOS 8 and higher (tested with Xcode 7.2.3 and Xcode 8)

Methods

show

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 and errorCallback respectively will be ignored if the success or error callback is provided on the options argument.

Options

NameTypeDefaultAndroidiOS
modeString"date"date, time, datetimedate, time, datetimeThe display mode
dateDaterequiredrequiredThe initial date to display
allowOldDatesbooleantrue-supportedAllow older dates to be selected
allowFutureDatesbooleantrue-supportedAllow future dates to be selected
minDateDatesupportedsupportedSet the minimum date that can be selected
maxDateDatesupportedsupportedSet the maximum date that can be selected
minuteIntervalint1>= HoneycombsupportedFor minute spinner the number of minutes per step
localeString"EN"-supportedThe locale to use for text and date/time
okTextString"Select"supportedsupportedThe text to use for the ok button
cancelTextString"Cancel"supportedsupportedThe text to use for the cancel button
successFunction-supportedsupportedThe success callback
cancelFunction-supportedsupportedThe cancel callback
errorFunction-supportedsupportedThe error callback
androidObject{}optionalignoredAndroid specific options

Android options

NameTypeDefaultDescription
themeintTheme_DeviceDefault_Dialogandroid.R.style theme
calendarbooleanfalseFalse shows spinners, however this depend on the theme selected and SDK version. When true, forces a calendar view.
is24HourViewbooleantrueUse 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), choose a theme that shows a date and time picker with spinners, like Theme_DeviceDefault_Light, Theme_Holo_Dialog or the traditional theme (1).

Example

document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {

	var myDate = new Date(); // From model.

	cordova.plugins.DateTimePicker.show({
		mode: "date",
		date: myDate,
		allowOldDates: true,
		allowFutureDates: true,
		minDate: new Date(),
		maxDate: null,
		minuteInterval: 15,
		locale: "EN",
		okText: "Select",
		cancelText: "Cancel",
		android: {
			theme: 16974126, // Theme_DeviceDefault_Dialog
			calendar: false,
			is24HourView: true
		},
		success: function(newDate) {
			// Handle new date.
			console.info(newDate);
			myDate = newDate;
		},
		cancel: function() {
			console.info("Cancelled");
		},
		error: function (err) {
			// Handle error.
			console.error(err);
		}
	});
}

Note that not all options have to be set.

Changelog

1.1.0

  • Add support for min and max date settings
  • Add type information for Typescript support
  • Rename repo in order to publish latest version to npm

1.0.0

  • Android/iOS: add support for cancel-event
  • Moved callback handlers from method parameters to options while keeping backward compatibility
  • Android: add 24 hour clock support

0.9.1

  • Android: add support for okText/cancelText

0.9.0

  • Android: fixed datetime mode only showing date picker (see #10)
  • Android: added theme support
  • Android: added calendar switch

0.8.0

  • Android: fix @NonNull error when building apk

0.7.0

  • iOS: use auto layout
  • iOS: remove < iOS 7 support (UIActionSheet)
  • iOS: remove custom modal picker type
  • Android: fix minute spinner for setting minute interval

0.6.0

  • Android: support Lollipop radial picker (no support for minute interval however)
  • Android: overall refactor and improvements

0.5.1

  • iOS: replace initWithWebView with pluginInitialize (deprecated in cordova-ios-4.0)

0.5.0

  • Rename repo to conform to npm/cordova plugin naming convention

Contributors