public interface CalendarSelectEvent extends CalendarEventWithJavaScriptEvent
CalendarSelectEvent
is a BBj Interface that contains event information after the user selects a date and/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_SELECT
event.
Modifier and Type | Method and Description |
---|---|
BBjNumber | getAllDay() Returns a BBjNumber acting as a boolean that determines whether the user selected all-day cells (1) or not (0). |
BBjString | getEnd() Returns the calendar's ending date of the selection, which may include timezone information and is exclusive. |
BBjString | getEndString() Returns the calendar's selected ending date in ISO 8601 format and is exclusive. Depending on what the user selected, it may or may not include a time and time zone portion. |
BBjString | getStart() Returns the calendar's selected starting date, which may include timezone information. |
BBjString | getStartString() Returns the calendar's selected starting date in ISO 8601 format. Depending on what the user selected, it may or may not include a time and time zone portion. |
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 selected all-day cells (1) or not (0).
public BBjString getEnd()
Returns the calendar's ending date of the selection, which may include timezone information and is exclusive.
Date and Time Formats for information on ISO 8601 date/time formats.
public BBjString getEndString()
Returns the calendar's selected ending date in ISO 8601 format and is exclusive. Depending on what the user selected, 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 BBjString getStart()
Returns the calendar's selected starting date, which may include timezone information.
Date and Time Formats for information on ISO 8601 date/time formats.
public BBjString getStartString()
Returns the calendar's selected starting date in ISO 8601 format. Depending on what the user selected, it may or may not include a time and time zone portion.
Date and Time Formats for information on ISO 8601 date/time formats.