CalendarView icon indicating copy to clipboard operation
CalendarView copied to clipboard

mark Dates in the past and the future

Open Schrank opened this issue 14 years ago • 0 comments

To style days in the past and the future, I needed classes for it.

Lines 362++

// Today, past and future if (date.getFullYear() == thisYear && date.getMonth() == thisMonth && day == thisDay) { cell.addClassName('today') } else if (date.getFullYear() >= thisYear && date.getMonth() >= thisMonth && day >= thisDay) { cell.addClassName('futureDay') } else { cell.addClassName('pastDay') }

Schrank avatar Jan 17 '12 13:01 Schrank