Submit deferred filters in a modal on enter key press

Hi, does anyone know how to submit a deferred filter form located inside a modal when pressing the Enter key on the keyboard?
Solution:
try ```php ->filtersApplyAction( fn(Tables\Actions\Action $action) => $action ->keyBindings(['enter'])...
Jump to solution
2 Replies
Solution
LeandroFerreira
try
->filtersApplyAction(
fn(Tables\Actions\Action $action) => $action
->keyBindings(['enter'])
)
->filtersApplyAction(
fn(Tables\Actions\Action $action) => $action
->keyBindings(['enter'])
)
arnaudsf
arnaudsfOP4w ago
Thank you so much, I've completely missed keyBindings feature

Did you find this page helpful?