我设法找到了几个离子日历模块但找不到任何日历控件模块,用户可以从这些模块中选择可用日期。那里有什么东西吗?
答案 0 :(得分:0)
http://www.clearlyinnovative.com/ionic-framework-custom-formly-template-using-datepicker-plugin
我已成功使用$cordovaDatePicker
插件,并在此博客文章中将其与一个完整的工作项目进行了整合。
这是插件 - http://ngcordova.com/docs/plugins/datePicker/
module.controller('MyCtrl', function($scope, $cordovaDatePicker) {
var options = {
date: new Date(),
mode: 'date', // or 'time'
minDate: new Date() - 10000,
allowOldDates: true,
allowFutureDates: false,
doneButtonLabel: 'DONE',
doneButtonColor: '#F2F3F4',
cancelButtonLabel: 'CANCEL',
cancelButtonColor: '#000000'
};
document.addEventListener("deviceready", function () {
$cordovaDatePicker.show(options).then(function(date){
alert(date);
});
}, false);
});