Autocomplete suggestions to supplement a TextInput
widget.
Available for Google Workspace Add-ons and Google Chat apps.
const textInput = CardService.newTextInput().setSuggestions( CardService.newSuggestions() .addSuggestion('First suggestion') .addSuggestion('Second suggestion'), );
Methods
Method | Return type | Brief description |
---|---|---|
addSuggestion(suggestion) | Suggestions | Add a text suggestion. |
addSuggestions(suggestions) | Suggestions | Add a list of text suggestions. |
Detailed documentation
addSuggestion(suggestion)
Add a text suggestion.
Parameters
Name | Type | Description |
---|---|---|
suggestion | String | The suggestion text. |
Return
Suggestions
— This object, for chaining.
addSuggestions(suggestions)
Add a list of text suggestions.
Parameters
Name | Type | Description |
---|---|---|
suggestions | Object[] | An array of string suggestions. |
Return
Suggestions
— This object, for chaining.