Andrew Wallo
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
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
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