ui.Select
A printable select menu with a callback.
Usage | Returns | ui.Select(items, placeholder, value, onChange, disabled, style) | ui.Select |
Argument | Type | Details | items | List, optional | The list of options to add to the select. Defaults to an empty array. |
placeholder | String, optional | The placeholder shown when no value is selected. Defaults to "Select a value...". |
value | String, optional | The select's value. Defaults to null. |
onChange | Function, optional | The callback to fire when an item is selected. The callback is passed the currently selected value and the select widget. |
disabled | Boolean, optional | Whether the select is disabled. Defaults to false. |
style | Object, optional | An object of allowed CSS styles with their values to be set for this widget. See style() documentation. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["Create a customizable select menu with `ui.Select()` by providing items, placeholder, initial value, and styles."],["Define an `onChange` callback function to execute actions when a user selects an item from the menu, receiving the selected value and the select widget."],["Utilize optional parameters like `disabled` to control interactivity and `style` to modify the appearance of the select menu."]]],[]]