Class UpdatedWidget Stay organized with collections Save and categorize content based on your preferences.
Page Summary
UpdatedWidget is used to provide autocomplete options for multiselect menus in SelectionInput.
It is only available for Google Chat apps and not Google Workspace add-ons.
The addItem method is used to add new selectable items to the UpdatedWidget.
The response of the updated widget. Used to provide autocomplete options for multiselect menu inSelection.
constupdatedWidget=CardService.newUpdatedWidget().addItem('item_one_title','item_one_value',false,'item_one_uri','item_one_bottom_text',).addItem('item_two_title','item_two_value',false,'item_two_uri','item_two_bottom_text',);
Only available for Google Chat apps. Not available for Google Workspace add-ons.
Methods
| Method | Return type | Brief description |
|---|---|---|
add | Updated | Adds a new item that can be selected. |
Detailed documentation
addItem(text, value, selected, startIconUri, bottomText)
Adds a new item that can be selected.
constupdatedWidget=CardService.newUpdatedWidget().addItem('item_one_title','item_one_value',false,'item_one_uri','item_one_bottom_text',).addItem('item_two_title','item_two_value',false,'item_two_uri','item_two_bottom_text',);
Parameters
| Name | Type | Description |
|---|---|---|
text | Object | The text to be shown for this item. Non-string primitive arguments are converted to strings automatically. |
value | Object | The form input value that is sent via the callback. Non-string primitive arguments are converted to strings automatically. |
selected | Boolean | Whether the item is selected by default. If the selection input only accepts one value (such as for radio buttons or a dropdown menu), only set this field for one item. |
start | Object | For multiselect menus, the URL for the icon displayed next to the item's text field. Supports PNG and JPEG files. |
bottom | Object | For multiselect menus, a text description or label that's displayed below the item's text field. |
Return
Updated — This object, for chaining.
Except as otherwise noted, the content of this page is licensed under theCreative Commons Attribution 4.0 License, and code samples are licensed under theApache 2.0 License. For details, see theGoogle Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-12-03 UTC.