FilamentF
Filament2y ago
dyo

How close filament modal in custom page

<x-filament::modal id='custom-modal-handle'>
    <x-slot name='header'>Tambah Nominal</x-slot>
    <div>{{ $this->form }}</div>
    <x-slot name="actions">
        <div class="flex justify-end">
            <button type="submit" wire:click='save'>
                Simpan
            </button>
        </div>
    </x-slot>
</x-filament::modal>


I have this modal form in filament custom page.

how can I close the modal when user submit the form?
Solution
thanks a lot for your response..
that's didn't work for me..

but I tried with this, and it works..

 $this->dispatchBrowserEvent('close-modal', ['id' => 'custom-modal-handle']);
Was this page helpful?