Optionally activate table summary with action
I have a table with multiple columns, one of which has a summary. Since the calculation of the values takes 3-4 seconds, I would like to display the summaries only optionally. For example, only after clicking on a page or table (header) action.
The only way I see to achieve this is via the hidden method of the summary (->summarize(Sum::make()->hidden(true))). So I tried it out (even without the Action Button), just to see how it would work: However, this only hides the summary values, but the request still takes 3-4 seconds, and the summary rows are still displayed at the bottom (empty).
Any ideas or something I'm overlooking?

5 Replies
@bernhard I think this is a recently introduced bug/change. I have an action that toggles summarizer visibility and prevents the empty rows and queries from running when hidden on v3.2.142. Somewhere around v3.3 the behavior changed to what you are seeing.
The only alternative seems to be to pass an empty [] to ->summarize, but it unfortunately does not take a closure
Was introduced by this PR: https://github.com/filamentphp/filament/pull/15594
GitHub
Fix conditionally hiding summaries by damiandejong · Pull Request #...
Description
The ability to conditionally hide summaries as described in the documentation by injecting e.g. $query is currently not working. When injecting $query it always returns null and also th...
Thanks for your time. Yeah, looks like it. Are you bscarola?
@nanopanda And how did you implement the Action but (to save me some time :)) if you have time to show me your example. I will try to create a reproducable Repo for the issue in the meantime
GitHub
Performance issue on invisible summaries · Issue #15919 · filamentp...
Package filament/filament Package Version v3.3.4 Laravel Version v12.3.0 Livewire Version v3.6.2 PHP Version 8.3.19 Problem description When hiding all summaries of a table, there is still a perfor...
This is in getHeaderActions() on the ListRecords class. I'm storing the toggle state for each table in the session, with the key being based off of the table class name.