Option to hide Select All checkbox from the table head
See original GitHub issue- I have searched the issues of this repository and believe that this is not a duplicate.
What problem does this feature solve?
I want to show the select checkboxes for each row but DO NOT want to show the select all checkbox. There should be a flag for that.
What does the proposed API look like?
rowSelection : { hideSelectAllCheckbox : true }
Issue Analytics
- State:
- Created 5 years ago
- Reactions:5
- Comments:15 (9 by maintainers)
Top Results From Across the Web
How to hide "Select All"-CheckBox from Table? - Stack Overflow
Currently, there is no publicly documented API to enable/disable showing the "Select All"-CheckBox on sap.m.Table .
Read more >Is there any option to remove header checkbox of Lightning ...
Yes, there'a hideCheckboxColumn boolean attribute that you can set to true for this exact purpose. Edit: there's no option to hide the "Select...
Read more >Row Selection - JavaScript Data Grid
Select a row by clicking on it. Selecting a row will remove any previous selection unless you hold down Ctrl while clicking. Selecting...
Read more >Select or Deselect All Checkboxes - Kendo UI Grid for jQuery
The following example demonstrates how to select or deselect all rows on the current page of the Grid by checking the Select All...
Read more >How to create a "Select All" checkbox - Educative.io
The JavaScript · Remove all the table highlights · Set the checked attribute of all checkboxes to false · Decrement the value of...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Try
hideDefaultSelections
.ant-table-thead tr .ant-table-selection-column div { display: none; }