greatCodeIdeas / md-date-range-picker

Angular Material Date Range Picker Service/Directive
MIT License
62 stars 40 forks source link

Remove This year and Last Year options #59

Closed manmarziyan closed 6 years ago

manmarziyan commented 6 years ago

I'm using a custom template along with the given template. I'd like to have day, week, month and 6 months options. Is there any way I can hide/remove the Year button?

roelbarreto commented 6 years ago

You can use the disableTemplates/disable-templates property

roelbarreto commented 6 years ago

Here is the example https://jsfiddle.net/ipiz/fav9mu0e/


<md-date-range disable-templates="['TY','LY']" show-template="true" ng-model="model" placeholder="Select Date Range"></md-date-range>```
manmarziyan commented 6 years ago

Works! Thanks

vishnu-vv commented 6 years ago

👍