I want to use Angular Material Design Default Date picker Calendar as a Event Calendar. like: http://prntscr.com/fpg1lw
How can I list my events in calendar? I just want to highlight some specific dates in Angular Material Design Date picker Calendar.
Technically You cannot accomplish this, but using a little trick may work (if you want only to display the events, not to select a date).
According the doc https://material.angularjs.org/latest/api/directive/mdDatepicker , you can use md-date-filter function(Date): boolean / Function expecting a date and returning a boolean whether it can be selected or not.
So you can for example put your date events in an array:
And in your html
You will get all the dates disabled except the dates indicated in your events, then add some style to customize it.