Stevee
Stevee
FFilament
Created by HL on 11/29/2023 in #❓┊help
InteractsWithPageFilters doesn't refresh the Widget on filter change
Hai, what is the solution for this ? I facing this issue when set pollingInterval to null
12 replies
FFilament
Created by Dekus on 12/28/2024 in #❓┊help
Table in Resource
may I know how you did it ?
8 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
thank you
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
ah here is my mistake
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
ya this case work after I declare
public $status
public $status
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
but i just notice, it work if I declare it in just simple case. but in my case I need some logic like
->default(function () use ($record): ?int {
if ($record->status !== null) {
return $record->status;
}
$enabledStatuses = Status::where([
'status_id' => $record->status_id,
'enabled' => true,
])->get('id');
if ($enabledStatuses->count() === 1) {
return $enabledStatuses->first()->id;
}

return null;
})
->default(function () use ($record): ?int {
if ($record->status !== null) {
return $record->status;
}
$enabledStatuses = Status::where([
'status_id' => $record->status_id,
'enabled' => true,
])->get('id');
if ($enabledStatuses->count() === 1) {
return $enabledStatuses->first()->id;
}

return null;
})
in this case it not work
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
no
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
no for this case
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
yes I have $this->fillForm(); at mount
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
I think not work at both
20 replies
FFilament
Created by Stevee on 2/24/2025 in #❓┊help
Default at select fields not work
I use it at custom page
20 replies
FFilament
Created by BKF Dev on 8/20/2024 in #❓┊help
Bug in v3.2.105
also happen to me, downgrading to 102 fixed it
28 replies
FFilament
Created by jelmerkeij on 6/16/2023 in #❓┊help
Set column action on condition
did you got the solution ?
18 replies
FFilament
Created by jelmerkeij on 6/16/2023 in #❓┊help
Set column action on condition
Hai, Im also have this similar issue
18 replies
FFilament
Created by Stevee on 1/8/2024 in #❓┊help
minimal theme on additional panel
Will try later, already 8 pm here
5 replies
FFilament
Created by Stevee on 12/19/2023 in #❓┊help
TextInput integer save 0 as null
thank youu
7 replies
FFilament
Created by Stevee on 12/19/2023 in #❓┊help
TextInput integer save 0 as null
still save as null
7 replies
FFilament
Created by Martin on 10/3/2023 in #❓┊help
$dataChecksum must not be accessed before initialization
is this fixed ? I also facing this when use it together with page filter
5 replies
FFilament
Created by Stevee on 10/30/2023 in #❓┊help
Validating Percentage Inputs in a Repeater
bump
7 replies
FFilament
Created by Stevee on 10/30/2023 in #❓┊help
Validating Percentage Inputs in a Repeater
but in v3, the ValidationException messages is not show and this also block others ValidationException to be shown
7 replies