Monthpicker for ionic
- Install it:
$ bower install ionic-monthpicker --save
- Add the js to your html:
<script src="lib/ionic-monthpicker/dist/ionic-monthpicker.min.js"></script>
- Import in your controller:
angular.module('app', ['ionic', 'ionic-monthpicker'])
.controller(function( MonthPicker ) {
MonthPicker.init({});
$scope.buttonTap = function() {
MonthPicker.show(function(res) {
console.log(res);
});
}
});
Key | Type | Defaul | Why? |
---|---|---|---|
minMonthIndex | int | 0 | Minimim month index |
minYear | int | new Date().getFullYear() | Minimum year |
maxMonthIndex | int | new Date().getMonth() | Maximum month index |
maxYear | int | new Date().getFullYear() | Maximum year |
monthLabels | array | ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Now', 'Dec'] | Month labels to display |
title | string | "Select month" | Popup title |
cancelText | string | "Cancel" | Cancel button text |