Class DateHTMLCustomizer
java.lang.Object
com.smartgwt.client.widgets.calendar.DateHTMLCustomizer
Called to determine the HTML to be displayed in a given date cell in a CalendarView
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract String
getDateHTML
(Date date, int rowNum, int colNum, CalendarView calendarView) getDateHTML() should be implemented and return the HTML string to display in the passed date-cell in the passed view To access the Calendar itself, use calendarView.getCalendar().
-
Constructor Details
-
DateHTMLCustomizer
public DateHTMLCustomizer()
-
-
Method Details
-
getDateHTML
getDateHTML() should be implemented and return the HTML string to display in the passed date-cell in the passed view To access the Calendar itself, use calendarView.getCalendar().- Parameters:
date
- the date to return HTML forrowNum
- the row number of the passed date in the passed viewcolNum
- the column number of the passed date in the passed viewcalendarView
- the view in which the date cell is being rendered- Returns:
- HTML string to display in the passed date-cell in the passed view
-