You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<desc>Sets the size of the element to a more compact, mini version. This option is also exposed as a data attribute: data-mini="true"
144
-
145
139
<p>This option is also exposed as a data attribute: <code>data-mini="true"</code>.</p>
146
140
</desc>
147
141
<typename="Boolean" />
148
142
</option>
149
143
<optionname="theme"default="null, inherited from parent"example-value='"a"'>
150
144
<desc>Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as its parent container if not explicitly set.
151
-
152
145
<p>Possible values: swatch letter (a-z).</p>
153
146
<p>This option is also exposed as a data attribute: <code>data-theme="a"</code>.</p>
154
147
</desc>
155
148
<typename="String" />
156
149
</option>
157
150
<optionname="trackTheme"default="null, inherited from parent"example-value='"a"'>
158
151
<desc>Sets the color scheme (swatch) for the slider's track, specifically. It accepts a single letter from a-z that maps to the swatches included in your theme.
159
-
160
152
<p>Possible values: swatch letter (a-z).</p>
161
153
<p>This option can be overridden in the markup by assigning a data attribute to the input, e.g. <code>data-track-theme="a"</code>.</p>
Copy file name to clipboardExpand all lines: entries/selectmenu.xml
+7-17Lines changed: 7 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -153,14 +153,12 @@
153
153
154
154
<p>To use custom menus on a specific <code>select</code>, just add the <code>data-native-menu="false"</code> attribute. Alternately, this can also programmatically set the select menu's <code>nativeMenu</code> configuration option to <code>false</code> in a callback bound to the <code>mobileinit</code> event to achieve the same effect. This will globally make all selects use the custom menu by default. The following must be included in the page after jQuery is loaded but before jQuery Mobile is loaded.</p>
<p>When the <code>select</code> has a small number of options that will fit on the device's screen, the menu will appear as a small overlay with a pop transition:
<desc>Position of the icon in the select button. Possible values: left, right, top, bottom, notext. The notext value will display the select as an icon-only button with no text feedback.
256
-
257
251
<p>This option is also exposed as a data attribute: <code>data-iconpos="left"</code>.</p>
<desc>If set to true, this will make the select button act like an inline button so the width is determined by the button's text. By default, this is null (false) so the select button is full width, regardless of the feedback content. Possible values: true, false.
282
-
283
275
<p>This option is also exposed as a data attribute: <code>data-inline="true"</code>.</p>
<desc>When set to true, clicking the custom-styled select menu will open the native select menu which is best for performance. If set to false, the custom select menu style will be used instead of the native menu.
296
-
297
287
<p>This option is also exposed as a data attribute: <code>data-native-menu="false"</code>.</p>
298
288
</desc>
299
289
<typename="Boolean" />
300
290
</option>
301
291
<optionname="preventFocusZoom"default="true on iOS platforms"example-value="false">
302
292
<desc>This option disables page zoom temporarily when a custom select is focused, which prevents iOS devices from zooming the page into the select. By default, iOS often zooms into form controls, and the behavior is often unnecessary and intrusive in mobile-optimized layouts.
303
-
304
293
<p>This option is also exposed as a data attribute: <code>data-prevent-focus-zoom="true"</code>.</p>
<desc>Sets the color of the overlay layer for the dialog-based custom select menus and the outer border of the smaller custom menus. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, the content block colors for swatch "a" will be used for the overlays.
317
-
318
305
<p>This option is also exposed as a data attribute: <code>ui-body-d</code>.</p>
319
306
</desc>
320
307
<typename="String" />
321
308
</option>
322
309
<optionname="theme"default="null, inherited from parent"example-value='"a"'>
323
310
<desc>Sets the color scheme (swatch) for all instances of this widget. It accepts a single letter from a-z that maps to the swatches included in your theme. By default, it will inherit the same swatch color as its parent container if not explicitly set.
324
-
325
311
<p>Possible values: swatch letter (a-z).</p>
326
312
<p>This option is also exposed as a data attribute: <code>data-theme="a"</code>.</p>
<p>The plugin works by parsing the values (or <code>abbr title</code>) of the first row of header (<code>th</code>) elements found in the table. For example, in the table above, the third table header is parsed to grab the contents ("Year"):</p>
<p>It's fairly common to need to logically group multiple columns together under a heading group for financial or scientific data. The framework can support the most simple version of this by allowing for two rows of table headers (<code>TH</code>), with the first row containing simple <code>colspan</code> attributes to group the columns below. In this configuration, the framework will add a class to the label of the first cell in each group to allow you to style these differently and provide aditional visual hierarchy. </p>
0 commit comments