devsrv / livewire-modal

Turn Laravel Livewire Component into Modal.
MIT License
14 stars 4 forks source link

How to close modal after form submit by livewire? #3

Open gangi-web opened 2 years ago

gangi-web commented 2 years ago

Really like your livewire-modal!

How to close modal after form submit from livewire component?

Tried this, but the modal-header (title) is still there. $this->emit('closeModal');

vodnicearv commented 2 years ago

we can simulate a click on the close button

I did so: document.getElementById('close-modal').click();

winkcler commented 1 year ago

we can simulate a click on the close button

I did so: document.getElementById('close-modal').click();

I'm facing the same problem, there would be no way for us to implement a correction, to use $this->emit('closeModal'); and close everything.