F
Filament2mo ago
Tieme

Action within Action->Slideover()

Hi All, I upgraded a project from V3 to V4. Almost everything works as normal. 1 thing i cant get to work is a action that opens a slideover within a sliderover I have a tablewidget that opens with a action in a slideover (it is on a settings page)
Action::make('tax')
->label('BTW Tarieven')
->slideOver()
->modalContent(view('filament.pages.tax_widget'))
->ModalCancelAction(false)
->ModalSubmitAction(false)
->extraModalWindowAttributes(['class' => 'slide-over-no-padding']),
Action::make('tax')
->label('BTW Tarieven')
->slideOver()
->modalContent(view('filament.pages.tax_widget'))
->ModalCancelAction(false)
->ModalSubmitAction(false)
->extraModalWindowAttributes(['class' => 'slide-over-no-padding']),
Within the widget i have some table actions (see Gist of widget) Those actions do nothing, only the test_vat (url) does something. Is a action within a modal or slideover not possible anymore? There are no conosole, log errors anywhere. Any helpt would be nice!
Gist
Header action within slideover
Header action within slideover. GitHub Gist: instantly share code, notes, and snippets.
Solution:
This is working now in the most recent release (V4.0.3)
Jump to solution
1 Reply
Solution
Tieme
Tieme2mo ago
This is working now in the most recent release (V4.0.3)

Did you find this page helpful?