when I click on textbox
of date then datepicker
will be open and it has year, month, and date view.
I just wanted year view to be shown that I could only select year not the month and date.
I am using bootstrap datepicker
.
my code
<input type='text'
class='form-control white-bg pointer-cursor'
id="holiday_year"
datepicker-popup=' yyyy'
datepicker-month=hide
ng-model='weekly_holiday.holiday_year'
is-open='$holiday_year_open'
ng-click='$holiday_year_open=true'
ng-readonly='true'
date-validator/>
tell me addition to this and what I want to do in controller.