We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b883778 commit 6c0ec08Copy full SHA for 6c0ec08
projects/igniteui-angular/src/lib/calendar/days-view/days-view.component.ts
@@ -208,7 +208,7 @@ export class IgxDaysViewComponent extends IgxCalendarBase implements DoCheck {
208
*/
209
public isSelected(date: ICalendarDate): boolean {
210
let selectedDates: Date | Date[];
211
- if (!date.isCurrentMonth) {
+ if (!date.isCurrentMonth || this.isDateDisabled(date.date)) {
212
return false;
213
}
214
0 commit comments