View source: R/block_elements.R
static_multi_select_menu | R Documentation |
This is the simplest form of select menu, with a static list of options passed in when defining the element. A multi-select menu allows a user to select multiple items from a list of options. Just like regular select menus, multi-select menus also include type-ahead functionality, where a user can type a part or all of an option string to filter the list. To use interactive components, you will need to make some changes to prepare your app. Read our guide to enabling interactivity. Works with block types: Section Input
static_multi_select_menu( placeholder, action_id, options = NULL, option_groups = NULL, initial_options = NULL, confirm = NULL, max_selected_items = NULL )
placeholder |
A plain_text only |
action_id |
An identifier for the action triggered when a menu option is selected. You can use this when you receive an interaction payload to identify the source of the action. Should be unique among all other action_ids in the containing block. Maximum length for this field is 255 characters. |
options |
A list of |
option_groups |
A list of |
initial_options |
A list of |
confirm |
A |
max_selected_items |
Specifies the maximum number of items that can be selected in the menu. Minimum number is 1. |
https://api.slack.com/reference/block-kit/block-elements#static_multi_select_menu
Other Elements:
button_element()
,
channels_multi_select_menu()
,
channels_select_menu()
,
checkbox_element()
,
conversations_multi_select_menu()
,
conversations_select_menu()
,
datepicker_element()
,
external_multi_select_menu()
,
external_select_menu()
,
image_element()
,
overflow_menu_element()
,
plain_text_input_element()
,
radio_button_group_element()
,
static_select_menu()
,
timepicker_element()
,
users_multi_select_menu()
,
users_select_menu()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.