BBjInputD::calendar
Description
In BBj 4.00 and higher, this method pops up a calendar dialog attached to the BBjInputD control.
Syntax
Return Value |
Method |
void |
calendar() |
Parameters
None.
Return Value
None.
CSS
The visual appearance of BUI controls is defined using CSS (cascading style sheets) rules. Easily change the default colors, border, and other settings by customizing these rules, all without changing any application code. See CSS API for a high-level overview of BUI CSS.
The calendar popup is a structured <div> with a primary style name of .BBjInputD-calendar. Internal calendar elements inherit their names from the GWT DatePicker:
.BBjInputD-calendar
.datePickerMonthSelector (the month selector widget)
.datePickerMonth (the month in the month selector widget)
.datePickerPreviousButton (the previous month button)
.datePickerNextButton (the next month button)
.datePickerDays (the portion of the picker that shows the days)
.datePickerWeekdayLabel (the label over weekdays)
.datePickerWeekendLabel (the label over weekends)
.datePickerDay (a single day)
.datePickerDayIsToday (today's date)
.datePickerDayIsWeekend (a weekend day)
.datePickerDayIsFiller (a day in another month)
.datePickerDayIsValue (the selected day)
.datePickerDayIsDisabled (a disabled day)
.datePickerDayIsHighlighted (the currently highlighted day)
.datePickerDayIsValueAndHighlighted (the highlighted day if it is also selected)
Remarks
Pops up a calendar underneath the InputD control. The user can pick a date from the calendar and return it to the InputD control, or click the Close box to exit with no selection.
Example
|
See Also
See the BBj Object Diagram for an illustration of the relationship between BBj Objects.