public interface CalendarDateClickEvent extends CalendarEventWithJavaScriptEvent
CalendarDateClickEvent
is a BBj Interface that contains event information after the user clicks on a date or time.
This data class will be made available to your custom callback routine after the user clicks on a date or time and
you have previously executed the BBjCalendarWidget::setCallback()
method to register for the CalendarAPI.ON_CALENDAR_DATE_CLICK
event.
Modifier and Type | Method and Description |
---|---|
BBjNumber | getAllDay() Returns a BBjNumber acting as a boolean that determines whether the user clicked on an all-day cell (1) or not (0). |
BBjString | getDate() Returns the calendar's date (day/time) that was clicked. |
BBjString | getDateString() Returns the calendar's date in ISO 8601 format. Depending on what the user clicked, it may or may not include a time and time zone portion. |
JsonObject | getHtmlElement() Returns the native HTML element with low-level information such as content, size, and position. |
getAsFormattedString, getAsJsonObject, getAsString, getCalendarUuid, getCalendarView, getEventNumber
getAltKey, getCalendarX, getCalendarY, getClientX, getClientY, getControlKey, getJsEvent, getJsEventAsFormattedString, getJsEventAsString, getMetaKey, getScreenX, getScreenY, getShiftKey
public BBjNumber getAllDay()
Returns a BBjNumber acting as a boolean that determines whether the user clicked on an all-day cell (1) or not (0).
public BBjString getDate()
Returns the calendar's date (day/time) that was clicked.
public BBjString getDateString()
Returns the calendar's date in ISO 8601 format. Depending on what the user clicked, it may or may not include a time and time zone portion.
Date and Time Formats for information on ISO 8601 date/time formats.
public JsonObject getHtmlElement()
Returns the native HTML element with low-level information such as content, size, and position.
HTML DOM Element Object for information about a native HTML element.