SmartGwtDatePicker¶
DOM SmartGwt SmartGwtDatePicker.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: DomSmartGwtDatePickerBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Month | Current month displayed by the date picker. | GetMonth |
Action Summary¶
Action | Description |
---|---|
DoNextMonth | Clicks on 'Next Month' selector. |
DoPrevMonth | Clicks on 'Previous Month' selector. |
DoSelectDate | Selects specific date in the date picker. |
Property Detail¶
Month¶
Current month displayed by the date picker.
Type: string|number
Accessors: GetMonth
value = SeS('SomeSmartGwtDatePicker').GetMonth()
Action Detail¶
DoNextMonth¶
Clicks on 'Next Month' selector.
SeS('SomeSmartGwtDatePicker').DoNextMonth()
Returns:
boolean: 'true' if success, 'false' otherwise
DoPrevMonth¶
Clicks on 'Previous Month' selector.
SeS('SomeSmartGwtDatePicker').DoPrevMonth()
Returns:
boolean: 'true' if success, 'false' otherwise
DoSelectDate¶
Selects specific date in the date picker.
SeS('SomeSmartGwtDatePicker').DoSelectDate(dateValue)
Parameters:
Name | Type | Description |
---|---|---|
dateValue | number | New date to select |
Returns:
boolean: 'true' if success, 'false' otherwise