I am developing a PhoneGap application and where I need datepicker/calender capabilities:
Basically on your page you add algon with CSS and JavaScript code for jQuery Mobile:
Most importantly:
$("#minutesPage").live('pageshow',function(event) {
var today = new Date();
var date = today.getDate();
var month = (today.getMonth()+1);
var year = today.getFullYear();
var todayStr = month+"/"+date+"/"+year;
$('#myminutesdate').trigger('datebox', {'method':'set', 'value':todayStr});
});
Also, if you don't want a popup, you can make it static.