-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Data Editor: add multi-select column #9137
Copy link
Copy link
Closed
Labels
feature:st.column_configRelated to column configuration functionalityRelated to column configuration functionalityfeature:st.data_editorRelated to the `st.data_editor` widgetRelated to the `st.data_editor` widgettype:enhancementRequests for feature enhancements or new featuresRequests for feature enhancements or new features
Metadata
Metadata
Assignees
Labels
feature:st.column_configRelated to column configuration functionalityRelated to column configuration functionalityfeature:st.data_editorRelated to the `st.data_editor` widgetRelated to the `st.data_editor` widgettype:enhancementRequests for feature enhancements or new featuresRequests for feature enhancements or new features
Checklist
Summary
Column configurations (st.column_config) for st.data_editor only has a configuration for a select box (like st.selectbox) where the user can select one choice from the options. We have a use-case where it would be helpful in st.data_editor for the user to be able to select multiple choices from the options like st.multiselect.
Why?
This is a data entry/editing interface where the user can select multiple "tags" for a single row of data.
How?
Logical syntax would be st.column_config.MultiSelect, and return a Python list in the st.data_editor multi-select column.
Additional Context
No response