Andrew Wallo
Andrew Wallo
FFilament
Created by Matthew on 1/12/2025 in #❓┊help
How to know when a record had been displayed
Are you talking about Filament tables? Can you show an example? You can maybe use the "rendered" lifecycle hook from Livewire: https://livewire.laravel.com/docs/lifecycle-hooks
10 replies
FFilament
Created by matin rajabi on 1/10/2025 in #❓┊help
getting form data from filament Repeater
Use ->saveRelationshipsUsing(null) & ->dehydrated(true). This would show the repeater $data on both create in handleRecordCreation() and edit/update in handleRecordUpdate(). The form will still be filled with your relationship data correctly. Only thing is you would need to manually handle the saving of your relationship data.
4 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
Oh okay sounds good!
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
I replied on the discussion post on Livewire's github repo
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
Yes I know. Thats what I was talking about
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
No description
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
Also, this does happen... Even in the demo. It's pretty easy to replicate. Just click around on the navigation items quickly.
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
I guess action modals do use query strings though which does use the history api, so I'm not too surprised. I just wish someone with enough Javascript experience and experience with Livewire's frontend code would make a PR given that I kind of gave all of the information regarding the issue in that discussion post..
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
Kind of weird that its happening with modals specifically. I would have expected the issue to occur just when navigating Resource pages quickly in the UI.
16 replies
FFilament
Created by Renan Pereira on 10/21/2024 in #❓┊help
Modal not working on Firefox
Is it only specific to modals you’re saying?
16 replies
FFilament
Created by nowak on 10/17/2024 in #❓┊help
Show navigation and topbar conditionally
You can even dispatch a custom event inside a middleware
10 replies
FFilament
Created by nowak on 10/17/2024 in #❓┊help
Show navigation and topbar conditionally
Those events
10 replies
FFilament
Created by nowak on 10/17/2024 in #❓┊help
Show navigation and topbar conditionally
10 replies
FFilament
Created by nowak on 10/17/2024 in #❓┊help
Show navigation and topbar conditionally
I think filament has some events that are sent when the panel is booted or something
10 replies
FFilament
Created by nowak on 10/17/2024 in #❓┊help
Show navigation and topbar conditionally
You can maybe try doing it in a listener.
10 replies
FFilament
Created by Steff on 10/10/2024 in #❓┊help
Saas with filament
The panel builder is the SaaS tool
8 replies
FFilament
Created by Andrew Wallo on 7/24/2024 in #❓┊help
Help with URL Query Parameters for Table Modal Actions in Filament
Yeah I did the same thing. Wasn’t able to persist it anytime the modal is open, but for my use case I just needed to redirect and open.
14 replies
FFilament
Created by Andrew Wallo on 7/24/2024 in #❓┊help
Help with URL Query Parameters for Table Modal Actions in Filament
And using mountTableAction
14 replies
FFilament
Created by Andrew Wallo on 7/24/2024 in #❓┊help
Help with URL Query Parameters for Table Modal Actions in Filament
Right now I'm just using a script to intercept the record id across pages by storing it in local storage
14 replies
FFilament
Created by Andrew Wallo on 7/24/2024 in #❓┊help
Help with URL Query Parameters for Table Modal Actions in Filament
Example of what I'm looking for but imagine the url param is linked to the opening and closing of the modal.
14 replies