HELP: It requires double click to trigger the table actions inside the Action Modal
In my RelationManager file, I have a table with a custom header action. This custom header action when clicked, it opens a Modal, and inside the modal is a filament table. In my filament table inside the modal, there's a table action. The problem I encountered is, that I needed to click twice the table action before it triggers. This issue only occurs every time I open the Modal. It happens like the first click doesn't trigger but the second and the rest of the action click works fine.
7 Replies
hey @hash_code3000 could you open an issue on GITHUB?
GitHub
Issue with Table Actions Inside a Livewire Component in Filament v3...
I've come across a behavior in Filament v3 that seems odd to me, and I'm curious to see if anyone else has experienced it or has any insights. Here's the backdrop: I've set up a res...
Thank you @daregu
lazy loading will fix the issue. thanks @daregu
Same issue here even if I add
->deferLoading()
to table :/
@daregu@BKF Dev i fix it by adding Lazy loading in my component
Oops ! I found the issue, in my case I'm using ->query to get data, so it doesn't work even when adding lazy loading, so I tried the ->relationship query so it works fine π