Announcement: On
November 13, 2024, all users will need to
use a Cloud project in order to access Earth Engine. After this date, continued individual access without a Cloud project will require
an exception.
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 printable select menu using `ui.Select()`, providing options and a placeholder for user interaction."],["Customize the select menu with initial value, callback functions for item selection, disabled state, and CSS styling."],["`ui.Select()` accepts arguments like `items`, `placeholder`, `value`, `onChange`, `disabled`, and `style` to configure its behavior and appearance."],["Utilize the `onChange` callback to trigger actions or updates based on the selected item, receiving the current value and the select widget itself."]]],[]]