blink
Persistent bulk action
Thanks for sharing. I solved it by publishing filament table views and implementing persistency checks in the blade file.
When I need persistent bulk actions, I add a property to the list record class of resource.
@if ((! $isReordering) && count($bulkActions))
<x-filament-tables::actions x-data="{ persistent: {{ $persistentBulkActions }} }"
:actions="$bulkActions"
x-cloak="x-cloak"
x-show="selectedRecords.length || persistent"
/>
@endif
8 replies
Persistent bulk action
You can place bulk actions as header actions without issue, they will be disabled until u select a record.
What I need is to show buttons in the bulk action row, header actions are rendered above the search bar and look ugly
8 replies