|
96 | 96 | <xi:include href="../includes/widget-method-option.xml" xmlns:xi="http://www.w3.org/2003/XInclude"/>
|
97 | 97 | <method name="pageDown">
|
98 | 98 | <desc>
|
99 |
| - Decrements the value by the specified number of pages, as defined by the <a href="#option-page"><code>page</code></a> option. Without the parameter, a single page is decremented. |
| 99 | + <p>Decrements the value by the specified number of pages, as defined by the <a href="#option-page"><code>page</code></a> option. Without the parameter, a single page is decremented.</p> |
| 100 | + <p>If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.</p> |
| 101 | + <p>Invoking <code>pageDown()</code> will cause <a href="#event-start"><code>start</code></a>, <a href="#event-spin"><code>spin</code></a>, and <a href="#event-stop"><code>stop</code></a> events to be triggered.</p> |
100 | 102 | </desc>
|
101 | 103 | <argument name="pages" type="Number" optional="true">
|
102 | 104 | <desc>Number of pages to decrement, defaults to 1.</desc>
|
103 | 105 | </argument>
|
104 | 106 | </method>
|
105 | 107 | <method name="pageUp" example-params='10'>
|
106 | 108 | <desc>
|
107 |
| - Increments the value by the specified number of pages, as defined by the <a href="#option-page"><code>page</code></a> option. Without the parameter, a single page is incremented. |
| 109 | + <p>Increments the value by the specified number of pages, as defined by the <a href="#option-page"><code>page</code></a> option. Without the parameter, a single page is incremented.</p> |
| 110 | + <p>If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.</p> |
| 111 | + <p>Invoking <code>pageUp()</code> will cause <a href="#event-start"><code>start</code></a>, <a href="#event-spin"><code>spin</code></a>, and <a href="#event-stop"><code>stop</code></a> events to be triggered.</p> |
108 | 112 | </desc>
|
109 | 113 | <argument name="pages" type="Number" optional="true">
|
110 | 114 | <desc>Number of pages to increment, defaults to 1.</desc>
|
111 | 115 | </argument>
|
112 | 116 | </method>
|
113 | 117 | <method name="stepDown">
|
114 | 118 | <desc>
|
115 |
| - Decrements the value by the specified number of steps. Without the parameter, a single step is decremented. |
116 |
| - <p>If the resulting value is above the max, below the min, or reuslts in a step mismatch, the value will be adjusted to the closest valid value.</p> |
| 119 | + <p>Decrements the value by the specified number of steps. Without the parameter, a single step is decremented.</p> |
| 120 | + <p>If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.</p> |
| 121 | + <p>Invoking <code>stepDown()</code> will cause <a href="#event-start"><code>start</code></a>, <a href="#event-spin"><code>spin</code></a>, and <a href="#event-stop"><code>stop</code></a> events to be triggered.</p> |
117 | 122 | </desc>
|
118 | 123 | <argument name="steps" type="Number" optional="true">
|
119 | 124 | <desc>Number of steps to decrement, defaults to 1.</desc>
|
120 | 125 | </argument>
|
121 | 126 | </method>
|
122 | 127 | <method name="stepUp" example-params='5'>
|
123 | 128 | <desc>
|
124 |
| - Increments the value by the specified number of steps. Without the parameter, a single step is incremented. |
125 |
| - <p>If the resulting value is above the max, below the min, or reuslts in a step mismatch, the value will be adjusted to the closest valid value.</p> |
| 129 | + <p>Increments the value by the specified number of steps. Without the parameter, a single step is incremented.</p> |
| 130 | + <p>If the resulting value is above the max, below the min, or results in a step mismatch, the value will be adjusted to the closest valid value.</p> |
| 131 | + <p>Invoking <code>stepUp()</code> will cause <a href="#event-start"><code>start</code></a>, <a href="#event-spin"><code>spin</code></a>, and <a href="#event-stop"><code>stop</code></a> events to be triggered.</p> |
126 | 132 | </desc>
|
127 | 133 | <argument name="steps" type="Number" optional="true">
|
128 | 134 | <desc>Number of steps to increment, defaults to 1.</desc>
|
|
0 commit comments