JQuerySpinner¶
jQuery-UI JQuery Spinner.
Extends HTMLObject
Extends SeSSimulatedObject
Behavior Pattern: JQuerySpinnerBehavior
Property Summary¶
Property | Description | Getter | Setter |
---|---|---|---|
Value | Gets/Sets the value of the spinner | GetValue | SetValue |
Action Summary¶
Action | Description |
---|---|
DoPageDown | Clicks the PageDown spinner button. |
DoPageUp | Clicks the PageUp spinner button. |
DoSetValue | Sets the value of the spinner. |
Property Detail¶
Value¶
Gets/Sets the value of the spinner
Type: number
Accessors: GetValue, SetValue
value = SeS('SomeJQuerySpinner').GetValue()
SeS('SomeJQuerySpinner').SetValue(value)
Action Detail¶
DoPageDown¶
Clicks the PageDown spinner button.
SeS('SomeJQuerySpinner').DoPageDown()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoPageUp¶
Clicks the PageUp spinner button.
SeS('SomeJQuerySpinner').DoPageUp()
Returns:
boolean: 'true' if success, 'false' otherwise.
DoSetValue¶
Sets the value of the spinner.
SeS('SomeJQuerySpinner').DoSetValue(value)
Parameters:
Name | Type | Description |
---|---|---|
value | number | The desired value of the spinner. |
Returns:
boolean: 'true' if success, 'false' otherwise.