Class DateHTMLCustomizer

java.lang.Object
com.smartgwt.client.widgets.calendar.DateHTMLCustomizer

public abstract class DateHTMLCustomizer extends Object
Called to determine the HTML to be displayed in a given date cell in a CalendarView
  • Constructor Details

    • DateHTMLCustomizer

      public DateHTMLCustomizer()
  • Method Details

    • getDateHTML

      public abstract 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().
      Parameters:
      date - the date to return HTML for
      rowNum - the row number of the passed date in the passed view
      colNum - the column number of the passed date in the passed view
      calendarView - the view in which the date cell is being rendered
      Returns:
      HTML string to display in the passed date-cell in the passed view