Proks D
Proks D
Explore posts from servers
SMSatisfactory Modding
Created by Proks D on 9/13/2024 in #help-using-mods
I don't have a Mods folder in FactoryGame install path. "Points to a folder that doesn't exist" err
No description
4 replies
FFilament
Created by Proks D on 7/24/2024 in #❓┊help
Disable Wizard Header Click
How do I disable wizard header click? Meaning we can only navigate between the steps using the next/previous buttons which is available at the bottom.
5 replies
FFilament
Created by Proks D on 6/7/2024 in #❓┊help
Multiple actions inline
How can I have the two actions side by side? I tried without the group but doesn't work with the error
Header actions must be an instance of Filament\Actions\Action, or Filament\Actions\ActionGroup.
Header actions must be an instance of Filament\Actions\Action, or Filament\Actions\ActionGroup.
This code display a dropdown but isn't what I want.
protected function getHeaderActions(): array
{

return [
ActionGroup::make([
Action::make()
->name('view')
->icon('heroicon-o-arrow-down-tray')
->url(route('exam.pdf.download', $this->record))
->openUrlInNewTab(),
DeleteAction::make(),
])
];
}
protected function getHeaderActions(): array
{

return [
ActionGroup::make([
Action::make()
->name('view')
->icon('heroicon-o-arrow-down-tray')
->url(route('exam.pdf.download', $this->record))
->openUrlInNewTab(),
DeleteAction::make(),
])
];
}
Thanks.
7 replies