Remi Hindriks
Bulk Actions Large Datasets
@Haydra In my case it turned out the records were eager loading a ton of extra data. Which made the memory fill up. None was needed in my table or export. so i solved it by adding withoutGlobalScopes() to my table query
26 replies
isLimited combined with getTableRecordActionUsing breaks
@Dennis Koch certainly:
a
User
hasMany InstructorLevel
created a custom Livewire table component like you always would
add
Console gives error, "show more" isnt shown.
When you inspect the code, you find the button to toggle isLimited
is outside the x-data scope where islimited
is defined.
a button element is added around the <ul> element that triggers the view action. Which closes before the show-more-button5 replies
Bulk Actions Large Datasets
When i show 50 records, and click "select all record" and then do the bulk action, it freezes. Im not showing all records on the table, if thats what you thought sorry.
This is what im doing.
Showing 50 records, the table has 400 in total, select 1 page, click "select all records", click the bulk actions -> application freezes
26 replies
Bulk Actions Large Datasets
Like i said, the exporter isnt even being reached. This isnt an exporter issue, its a bulk action issue. The exporter was an example. If i make a custom Action that just updates a column, or sends and email for each record, the same issue occures
26 replies
Bulk Actions Large Datasets
Im using the Filament Exporter, but the action isnt even being reached. It feels like the action first tries to get all the selected records in memory, and then execute the action. But the getting the models in memory part is where it freezes. Any bulk action with this amount of records freezes
26 replies