iOS 用の電話ギャップ日付ピッカー プラグインを使用していますが、これは正常に動作していましたが、iOS7 のアップグレード後に将来の日付を選択できません。これは私のjsコードです。
// Handling for iOS and Android
$('.appointmentTime').on('click', function(e) {
var currentField = $(this);
window.plugins.datePicker.show((function() {
var o = {
date: new Date(),
mode: 'time', // date or time or blank for both
allowOldDates: true
};
if (myConfig.deviceType === myConfig.deviceTypeEnum.IOS) {
o.allowFutureDates = true;
}
return o;
})(), function(returnDate) {
var selectedDate;
selectedDate = new Date(returnDate);
currentField.blur();
});
}