dhi_m
dhi_m

Reputation: 1265

How can i integrate device date and time picker in phonegap page?

In my phonegap app there is an appointment form with date and time fields. I need to integrate device date and time pickers in this page and also need to remove/disable past dates & already booked time slots. How can I do this?

Thanks in advance...

Upvotes: 3

Views: 5826

Answers (1)

Lee Crossley
Lee Crossley

Reputation: 1280

What platform does this relate to? Most platforms (iOS and later Android) have native support for the HTML5 input types "date", "time" and "datetime".

e.g. <input type="date">

If you're targeting a platform that does not have native support, there are Cordova/PhoneGap plugins available to achieve this: http://plugreg.com/search?q=date+time

Upvotes: 4

Related Questions