Package org.zkoss.calendar.api
Interface ItemRender
-
public interface ItemRenderA renderer of the calendar item.(Like the mold renderer of ZK component)- Author:
- jumperchen
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringdrawAllDay(Calendars cal, CalendarItem evt, String id)Draws the all day in the default mold of the calendar.StringdrawAllDayByMonth(Calendars cal, CalendarItem evt, String id, Date begin, Date end)Draws the all day in the month mold of the calendar.StringdrawDay(Calendars cal, CalendarItem evt, String id)Draws the day in the default mold of the calendar.StringdrawDayByMonth(Calendars cal, CalendarItem evt, String id)Draws the day in the month mold of the calendar.
-
-
-
Method Detail
-
drawDay
String drawDay(Calendars cal, CalendarItem evt, String id)
Draws the day in the default mold of the calendar.- Parameters:
id- auto-created by the calendars component
-
drawAllDay
String drawAllDay(Calendars cal, CalendarItem evt, String id)
Draws the all day in the default mold of the calendar.- Parameters:
id- auto-created by the calendars component
-
drawDayByMonth
String drawDayByMonth(Calendars cal, CalendarItem evt, String id)
Draws the day in the month mold of the calendar.- Parameters:
id- auto-created by the calendars component
-
-