TDT
Create a modal to show error while mounting options of a `Forms\Components\Select`
I'm dynamically mounting options for a
Forms\Components\Select
component by requesting an API. However the API call can fail, of course, and I need to handle that giving some information to the user.
It's important to cite that this select component is inside a modal form for editing the record of a table. However it seems that multiple modals are allowed since it works if add a create option on the same select component.
My code is like below:
But the modal is never shown. I already tried to use ->requiresConfirmation()
just to test and also ->dispatch('open-modal')
and ->dispatchSelf('open-modal')
, but none of these worked.
However if I use ->action(fn () => info('action called'))
and ->call()
the action is properly executed despite the modal never is shown.
Anyone can help? Am I missing something?
Link to the same post on GitHub: https://github.com/filamentphp/filament/discussions/105861 replies