daerentis
daerentis
FFilament
Created by daerentis on 4/18/2024 in #❓┊help
How can i disable the Relation Manager on the Infolist?
Is it possible? Seems to be visible as default
3 replies
FFilament
Created by daerentis on 6/21/2023 in #❓┊help
SelectFilter with options from custom query
4 replies
FFilament
Created by daerentis on 5/16/2023 in #❓┊help
Check if table is filtered by a user
I would like to do some calculation in getTableContentFooter() if filters are applied. Is there a way to check if a table is filtered by a user?
17 replies
FFilament
Created by daerentis on 5/10/2023 in #❓┊help
extraAttributes on Bulk Actions not working correctly?
I'm trying to add extraAttributes to a Bulk Action but it is not rendered. It is working on my Single Actions though
->bulkActions([
Tables\Actions\BulkAction::make('groupCalculation')
->icon('heroicon-o-calculator')
->action(function (Collection $records) {
// Doing something...
})
->extraAttributes(['foobar' => 'bar'])
])
->bulkActions([
Tables\Actions\BulkAction::make('groupCalculation')
->icon('heroicon-o-calculator')
->action(function (Collection $records) {
// Doing something...
})
->extraAttributes(['foobar' => 'bar'])
])
Is it missing in the view or is it me using it incorrectly?
6 replies
FFilament
Created by daerentis on 5/9/2023 in #❓┊help
Get the selected records in table inside a Widget
How can I get the currently selected records in table inside a widget. I need to make calculations based on some attributes of these records.
3 replies