Replies: 2 comments 1 reply
-
I tried using the built in system in infolists but apparently it has not yet been added :(
|
Beta Was this translation helpful? Give feedback.
0 replies
-
What about this? https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component/#chaining-actions |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Package
Actions
Package Version
v3.2.136
How can we help you?
When we use
->extraModalFooterActions([])
filament will open a new modal and close the old one, and when the new modal closes it will restore the old one.I am curious if anyone has figured out how this works under the hood and if we can hook into it.
I have an action in a livewire component that shown a modal. Inside this component I have a custom Info list component that opens a modal using the modal component (as fas as I can tell I cannot trigger a regular action from an info list component)
https://filamentphp.com/docs/3.x/support/blade-components/modal
But the issue is that it shows both modals at the same time, causing ESC to close both..
I was hoping I could listen to the
close-modal
event but I just cant figure out a way to do that :(I have tried adding this all over but it never triggers
Edit: Ok.. Sooo how does Filament listen to events? I cannot seem to find a single use of
Livewire.on()
or#[On()}
Beta Was this translation helpful? Give feedback.
All reactions