Angular Material Datepicker

85 views
Skip to first unread message

Alexander Chemeza

unread,
Jul 12, 2021, 9:50:33 AM7/12/21
to angular-material2
Good day.
I have a suggestion for your documentation.
The suggestion deals with datepicker. I had a task to disable days of week by dynamic array. That's how I solved this:
// The array of days of week to be available
const arr = [0, 3, 6];
 this.expressSenderDate = (d: Date): boolean => {
      const day = d.getDay();
      // tslint:disable-next-line:align
      return arr.indexOf(day) !== -1;
 };
In your documentation I found only one example, that is static. My suggestion is to add this example.
Reply all
Reply to author
Forward
0 new messages