i am using bootstrap date picker for my angular js project.
below is the HTML
my date picker documentation is as below date picker documentation
   <input type="text" placeholder="From Date" id="fromDate"
    ng-required="newcashbenifit.isFixedAmount == false"
   ng-disabled="newcashbenifit.isFixedAmount == true"
    class="form-control" name="from" autocomplete="off"
   ng-model="newcashbenifit.fromDate" autoclose="false"
   data-date-format="dd/MM/yyyy"  bs-datepicker />
date picker is loading and working well. but i need to modify this to show only month and years. (remove dates). how i do it.