Thijmen
Timeout on specific computer
I have a simple table with 270k records that is working fine for all users.
I have a second table with 5k of those 270k records but almost no users can see this page. They all get a timeout and in Sentry i also see the 30 seconds timeout exceeded.
If i sign in with their user accounts on my own computer it is working fine.
Any reason why this page with table couldnt load on this specific computers?
17 replies
dashboard filtersForm() not showing up
My dashboard extends
Filament\Pages\Dashboard
, on that dashboard page i have the Filament\Pages\Dashboard\Concerns\HasFiltersForm
.
I added the filtersForm()
like this:
Still i don't see any form at the dashboard page.19 replies
Global widget filter is null
I have followed the docs to create a global widget filter.
My dashboard page has:
use HasFiltersAction;
On my widget class i dd()
the filters like this:
dd($this->filters);
But it keeps saying null
.
If i apply the filters in the slideover it still says null
/3 replies
TableWidget modal not opening
I have a tablewidget with the following code:
According to the following docs that should be good: https://filamentphp.com/docs/3.x/actions/modals#custom-modal-content.
Only problem now is that no modal opens.
39 replies
Form not doing anything
I created a Filament page with a form on it. The form is rendering but all of the other functions are not working. When i try
->afterStateUpdated()
on the fields nothing happens. Probably i must have forgotten something but i can't find it.
This is the page: https://gist.github.com/ThijmenKort/9f8eafb7a5253b09b71da7e45e9ebbf111 replies
Custom Operator in Query Builder
I have this code:
And i get this error from it.
Argument #1 ($query) must be of type Illuminate\Database\Query\Builder, Illuminate\Database\Eloquent\Builder given
Did I do something wrong here? I followed the docs so not sure.10 replies
Action in Form
I've copied this code from the docs but am getting a error. I've tried to switch action classes but that doesnt solve it
https://filamentphp.com/docs/3.x/forms/actions#defining-a-form-component-action
Error:
6 replies