how to make panel resource edit page save button to be sticky like v2?
In v2 there is a simple config to change in config/filament.php to make edit resource page save button sticky
in v3 what is the equivalent? I can't find it in the documentation
7 Replies
You can add this in a service provider's boot method:
can only enable for a single page?
not whole panel?
Try it on the BasePage class:
i got 3 panels, can this be restricted to just 1 panel?
Try the
boot()
method of the panel provider.thank you i will try it tmr
I did this but the buttons are not sticky all the time, they disappear on a certain point while scrolling:
return $panel
->bootUsing(function () {
Page::stickyFormActions(true);
})