npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@wertarbyte/skwas-cordova-plugin-datetimepicker

v2.1.2

Published

Cordova DateTime picker plugin

Downloads

12

Readme

npm version

skwas-cordova-plugin-datetimepicker

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

Installation

cordova plugin add skwas-cordova-plugin-datetimepicker

or for latest

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

Supported platforms

  • Android 4.4 and higher
  • iOS 9 and higher

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

| Name | Type | Default | Android | iOS | | |---------------------|---------------------|----------------|:--------------------------:|:--------------------------:|--------------------------| | mode | String | date | date, time, datetime | date, time, datetime | The display mode | | date | Date | | required | required | The initial date to display | | allowOldDates | boolean | true | Supported | Supported | Allow older dates to be selected | | allowFutureDates | boolean | true | Supported | Supported | Allow future dates to be selected | | minDate | Date | | Supported | Supported | Set the minimum date that can be selected | | maxDate | Date | | Supported | Supported | Set the maximum date that can be selected | | minuteInterval | int | 1 | >= Honeycomb | Supported | For minute spinner the number of minutes per step | | locale | String | (user default) | - | Supported | The locale to use for text and date/time | | okText | String | (os default) | Supported | Supported | The text to use for the ok button | | cancelText | String | (os default) | Supported | Supported | The text to use for the cancel button | | clearText | String | | Supported | Supported | The text to use for the clear button | | titleText | String | | Depends on theme | Supported | The text to use for the dialog title | | success | Function(date) | - | Supported | Supported | The success callback | | cancel | Function() | - | Supported | Supported | The cancel callback | | error | Function(err) | - | Supported | Supported | The error callback | | android | Object | {} | optional | ignored | Android specific options |

When providing the clearText property, an extra button is shown with intent to clear the current date. When the user taps this button, the success callback will be called with an undefined 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.

Android options

| 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.

Example

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()
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.

Example

cordova.plugins.DateTimePicker.hide();

Changelog

For a list of all changes see here.

Build requirements

  • Cordova 7 and higher
  • Xcode 11 and higher (iOS)

Contributors