xb23
xb23
FFilament
Created by Ogalesha on 10/2/2024 in #❓┊help
Save edit form with two fields: Select & Livewire table component
ive discovered a workaround, is to move the button to the header eg: public function getFormActions(): array { return []; } protected function getHeaderActions(): array { return [ $this->getSaveFormAction() ->submit(null) ->action(fn() => $this->save()), $this->getCancelFormAction(), ]; }
12 replies
FFilament
Created by Ogalesha on 10/2/2024 in #❓┊help
Save edit form with two fields: Select & Livewire table component
I can confirm, the exact same thing button is outside the <form></form> - I wonder if this a bug in filament
12 replies
FFilament
Created by Ogalesha on 10/2/2024 in #❓┊help
Save edit form with two fields: Select & Livewire table component
That would make sense a suppose a workaround would be to use javascript to move the button back into the form .. but doesn't feel right
12 replies
FFilament
Created by Ogalesha on 10/2/2024 in #❓┊help
Save edit form with two fields: Select & Livewire table component
weirdly though, if I have a modal box open up, then close the modal box the form then saves fine! .. weird
12 replies
FFilament
Created by Ogalesha on 10/2/2024 in #❓┊help
Save edit form with two fields: Select & Livewire table component
Im having the exact same problem today as well , cant understand why it wont save, remove the table absolutley fine.
12 replies
FFilament
Created by xb23 on 6/26/2024 in #❓┊help
Help with a Form and ViewField::make
And then if I wanted to send values from the ViewField into the main form is that possible?
6 replies
FFilament
Created by xb23 on 6/26/2024 in #❓┊help
Help with a Form and ViewField::make
Fab, is there way I can send the entire form state, so all the current filled out fields?
6 replies
FFilament
Created by xb23 on 6/26/2024 in #❓┊help
I'm using Select::make('manager_id') - but I need to do some conditional if statements
For example, I want to say if this user is not in the role 'Super Admin' I want to add these options to the select box : ->default($user->id)->selectablePlaceholder(false)
3 replies