"Select All" or "Unselect All" filter option #351
Unanswered
arindammitra06
asked this question in
Q&A
Replies: 1 comment 1 reply
-
You can easily achieve this using |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
mantine-react-table version
1.3.4
react & react-dom versions
18.2.0
Describe the bug and the steps to reproduce it
First of all, thank you for the awesome library.
I am using Mantive Table v6 in one of my project and very much love its features. I am using the 'multi-select' filter variant for my tables, I was wondering if there is a way to have the "Select All" or "Unselect All" options in the filter selection. Does the enableSelectAll help anyhow, i guess its for the row selection.
If not available, this should rather go as an enhancement request. Sorry for the trouble and thank You in advance.
Minimal, Reproducible Example - (Optional, but Recommended)
const table = useMantineReactTable({
columns,
data,
layoutMode:'semantic',
enableSelectAll: true,
selectAllMode:'all',
enableColumnResizing: true,
enableColumnPinning:true,
enableColumnDragging:true,
enableColumnOrdering:true,
enableColumnFilterModes: true,
enableFacetedValues: true,
enableGrouping: true,
columnFilterDisplayMode: 'popover',
paginationDisplayMode: 'pages',
positionToolbarAlertBanner: 'bottom',
enableStickyHeader: true,
mantineTableContainerProps: { sx: { maxHeight: '350px'} },
mantineSearchTextInputProps: {
placeholder:
Search ${data.length} rows
,size:'xs'
Screenshots or Videos (Optional)
No response
Do you intend to try to help solve this bug with your own PR?
Maybe, I'll investigate and start debugging
Terms
Beta Was this translation helpful? Give feedback.
All reactions