View source: R/block_elements.R
conversations_select_menu | R Documentation |
This select menu will populate its options with a list of public and private channels, DMs, and MPIMs visible to the current user in the active workspace. A select menu, just as with a standard HTML <select>
tag, creates a drop down menu with a list of options for a user to choose. The select menu also includes 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 Actions Input
conversations_select_menu( placeholder, action_id, initial_conversations = NULL, default_to_current_conversation = NULL, confirm = NULL, response_url_enabled = NULL, filter = 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. |
default_to_current_conversation |
Pre-populates the select menu with the conversation that the user was viewing when they opened the modal, if available. Default is false. |
confirm |
A |
response_url_enabled |
This field only works with menus in |
filter |
A |
initial_conversation |
A list of one or more IDs of any valid conversations to be pre-selected when the menu loads. If default_to_current_conversation is also supplied, initial_conversation will take precedence. |
https://api.slack.com/reference/block-kit/block-elements#conversation_select
Other Elements:
button_element()
,
channels_multi_select_menu()
,
channels_select_menu()
,
checkbox_element()
,
conversations_multi_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_multi_select_menu()
,
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.