stijntrinos
stijntrinos
FFilament
Created by stijntrinos on 8/5/2024 in #❓┊help
Move Reapeter Field Add Action Btn
I wan't to move the add new action in a repeater field to the top of the repeater field and also add a new field from the top. Does anyone know how to do this? I want this because one repeater field existst of 3 fields. For mobile it will be a long list, so it would be nicer to just add from the top.
2 replies
FFilament
Created by stijntrinos on 9/26/2023 in #❓┊help
Edit Resource - Save Form Pop-Up
Is it possible to add a confirmation pop-up on the save action of an edit resource? I can't find it in the docs.
3 replies
FFilament
Created by stijntrinos on 9/7/2023 in #❓┊help
Form Field Description
Is there a way to add a description to a form field? Like for the table columns? I have a form but want to add a small description to some date fields for some explanations, but can't find something to make this work? or is this gonna need to be a new functionality?
6 replies
FFilament
Created by stijntrinos on 9/5/2023 in #❓┊help
Is there a way to split Widgets?
I have a View resource with possibly up to 6 footer widgets. When all 6 widgets need to be visible, the page becomes really long. Is there a way to create tabs on this position and place 2 widgets in each tab? Or does it need to be done via another way?
1 replies
FFilament
Created by stijntrinos on 8/25/2023 in #❓┊help
`->live()` Not working as `->reactive()`
I don't know if I am doing something wrong here, but as of what I can see in the docs is that reactive is now replaced by live? If I replace it, the afterStateUpdated is not triggered. Is there something else that needs to be done to the form or? My code looks something like this
Select::make('data.qa1')
->label('qa1')
->options([
'a1' => 'a1',
'a2' => 'a2',
'a3' => 'a3',
])
->live()
->afterStateUpdated(function (Get $get, Component $component, ?string $state) {
echo $state;
}),
Select::make('data.qa1')
->label('qa1')
->options([
'a1' => 'a1',
'a2' => 'a2',
'a3' => 'a3',
])
->live()
->afterStateUpdated(function (Get $get, Component $component, ?string $state) {
echo $state;
}),
3 replies
FFilament
Created by stijntrinos on 7/11/2023 in #❓┊help
Relation Manager Closure In Table
Hi, I have a relation manager with a table. I want to hide a few columns based on a value from the resource model. I can't get an ID or something in the table function from the resource. Is this possible or can someone help with this?
3 replies