I would like to see different colors in my DateChooser / CalendarLayout for weekdays and weekend days. I would also like to achieve this using a custom stylename (for example: "weekColor" and "weekendColor".
Any idea how this can be achieved?
Cheer, Rick
I did something similar for a client. The approach is to extend the CalendarLayout class to accept those styles and modify the styling on the relevant days. Then extend the DateChooser to accept those same styles and pass them on to your new CalendarLayout class.
It's tedious; and you'll most likely run into private variable issues; but it is doable.