|
Hi Narayan,
There is no configuration for the hidden events label. The easiest way to override default one is to implement your own day cell renderer.
Please find as attachment a custom renderer sample.
Then you have to set it in the component declaration (in MXML):
calendarDayCellRenderer="CalendarDayCellRendererCustomNotDisplayedItems"
or in AS3
calendar.calendarDayCellRenderer = new ClassFactory(CalendarDayCellRendererCustomNotDisplayedItems);
For the day cell header, you can override default labels by defining a Calendar bundle as defined in the CalendarDateUtils.getDayHeaderDateToString AsDoc: http://www.flex-component.com/asdoc/kccalendar/com/keepcore/calendar/utils/CalendarDateUtils.html#getDayHeaderDateToString%28%29
Defining a Calendar bundle is explained in this article: http://www.flex-component.com/components-documentation/kc-calendar-documentation#nav4
But there is another way, to define your own header renderer as for the cell renderer.
I also attached a sample, you also have to set in in MXML or AS3:
calendarDayHeaderRenderer="CalendarDayHeaderRendererCustom"
or
calendar.calendarDayHeaderRenderer = new ClassFactory(CalendarDayHeaderRendererCustom);
Best regards,
Jérémy
|