Modals
A Modal is a pop-up dialog used to collect input from a user. Modals are opened in response to an interaction (button click, slash command) using a trigger_id returned by Slack.
Modal is kept as a thin compatibility wrapper around ModalView — new code can use either. See the Confirmation modal cookbook recipe for a complete example.
Slack reference: https://api.slack.com/surfaces/modals
Modals are pop-up windows, primarily used for collecting data from users.
This module is kept only for backwards compatibility, modals have been largely subsumed as a subtype of view.
See: https://api.slack.com/surfaces/modals
Modal
Kept for backwards compatibility - see
ModalView
Source code in slackblocks/modals.py
19 20 21 22 23 24 25 26 27 28 29 30 31 32 | |