JQueryDatepicker¶
jQuery-UI JQuery Date Picker.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: JQueryDatepickerBehavior
Property Summary¶
| Property | Description | Getter | Setter |
|---|---|---|---|
| Month | Gets the currently selected month | GetMonth | |
| Year | Gets the currently selected year | GetYear |
Action Summary¶
| Action | Description |
|---|---|
| DoNextMonth | Changes to the next month. |
| DoPrevMonth | Changes to the previous month. |
| DoSelectDate | Selects a specific day in the current month. |
Property Detail¶
Month¶
Gets the currently selected month
Type: number
Accessors: GetMonth
value = SeS('SomeJQueryDatepicker').GetMonth()
Year¶
Gets the currently selected year
Type: number
Accessors: GetYear
value = SeS('SomeJQueryDatepicker').GetYear()
Action Detail¶
DoNextMonth¶
Changes to the next month.
SeS('SomeJQueryDatepicker').DoNextMonth()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoPrevMonth¶
Changes to the previous month.
SeS('SomeJQueryDatepicker').DoPrevMonth()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSelectDate¶
Selects a specific day in the current month.
SeS('SomeJQueryDatepicker').DoSelectDate(dateValue)
Parameters:
| Name | Type | Description |
|---|---|---|
| dateValue | number | The day of the month to choose |
Returns:
boolean: 'true' if success, 'false' otherwise.