FIlament Bulk Action inside Livewire Component

I have created a filament table inside a livewire component. Everything is working fine the filters the headersActions etc. The only problem i have is with bulk actions. When i try to enter a bulk action then it shows me this all the time without having chosen an item. The disselect all and the select all works but the view of it is broken as you can show because it always shows me the bulk action button and when i try to choose a row it does not show the tick button as it should be. In a dashboard i have the bulk actions work great but here its broke.
])
->filters([
//
])
->actions([
//
])
->bulkActions([
BulkAction::make('excel_export')
->label('Εξαγωγή σε Excel')
->deselectRecordsAfterCompletion()
])
])
->filters([
//
])
->actions([
//
])
->bulkActions([
BulkAction::make('excel_export')
->label('Εξαγωγή σε Excel')
->deselectRecordsAfterCompletion()
])
Does anyone have any idea how to fix this problem?
No description
1 Reply
Nikos Koukos
Nikos Koukos2w ago
I have also tried doing
selectable()
selectable()
on the table and in the Actions to add an Action based on this but i have exactly the same problem when trying to select the rows as i had before