martin-ro
martin-ro
FFilament
Created by nowak on 8/9/2024 in #❓┊help
Duplicate and missing records/rows when navigating table pages
yeah, that's a better description. The default is certainly not expected behaviour, so it's a bug.
13 replies
FFilament
Created by nowak on 8/9/2024 in #❓┊help
Duplicate and missing records/rows when navigating table pages
Yes, a GH issue with the fix would be a good start so the problem gets visible/searchable for others.
13 replies
FFilament
Created by nowak on 8/9/2024 in #❓┊help
Duplicate and missing records/rows when navigating table pages
This also works:
TextColumn::make('created_at')
->sortable(['created_at', 'id'])
TextColumn::make('created_at')
->sortable(['created_at', 'id'])
13 replies
FFilament
Created by nowak on 8/9/2024 in #❓┊help
Duplicate and missing records/rows when navigating table pages
Yes, meanwhile I have figured it out. The minimal reproducible setup would be a table with ->defaultSort('created_at', 'desc') or a TextColumn::make('created_at')->sortable() with records that have identical created_at timestamps. The way to solve that for me was:
public static function table(Table $table): Table
{
return $table
->defaultSort('created_at', 'desc')
->defaultSort('id', 'desc')
...
public static function table(Table $table): Table
{
return $table
->defaultSort('created_at', 'desc')
->defaultSort('id', 'desc')
...
The second defaultSort fixed it for me @nowak
13 replies
FFilament
Created by nowak on 8/9/2024 in #❓┊help
Duplicate and missing records/rows when navigating table pages
@nowak I'm seeing that exact same issue too. Did you figure it out?
13 replies
FFilament
Created by رجل الجمبري on 11/29/2023 in #❓┊help
Form Action to save record, collapse parent repeater item and open next repeater item
I'm trying something similar... did you find a solution?
3 replies
FFilament
Created by martin-ro on 8/18/2023 in #❓┊help
Accessing $records in hintAction
That works, Danke!
5 replies
FFilament
Created by Matthew on 5/21/2023 in #❓┊help
Issue with primary color theme.
There is a non-zero chance Caleb is releasing or at least announcing a release date at Laracon US 🤞
62 replies