F
Filament9mo ago
Tur

Disable "select all" checkbox

Hey everyone, is there a simple way to disable/hide a "select all" checkbox in table list. All other checkboxes are fine - i want to force employees to select records one by one. I know i can check during bulk action execution but visually hiding it would be great.
Solution:
.filament-tables-selection-indicator span > button {display:none !important;}
.filament-tables-selection-indicator span > button {display:none !important;}
As CSS since there isn't a way to disable select all from my checks...
Jump to solution
2 Replies
Solution
toeknee
toeknee9mo ago
.filament-tables-selection-indicator span > button {display:none !important;}
.filament-tables-selection-indicator span > button {display:none !important;}
As CSS since there isn't a way to disable select all from my checks
Tur
Tur9mo ago
Thank you, i think you are right this workaround should be sufficient for now