kool
kool
FFilament
Created by kool on 9/16/2024 in #❓┊help
loading indicator between table tabs
Thank you so much @Leandro Ferreira, I appreciate your time
10 replies
FFilament
Created by kool on 9/16/2024 in #❓┊help
loading indicator between table tabs
No description
10 replies
FFilament
Created by kool on 9/16/2024 in #❓┊help
loading indicator between table tabs
No description
10 replies
FFilament
Created by kool on 9/16/2024 in #❓┊help
loading indicator between table tabs
The data takes time to load, which is my concern to display some indicator the user know if they clicked on the tab and it fetching the data
10 replies
FFilament
Created by kool on 9/16/2024 in #❓┊help
loading indicator between table tabs
I have a resource that display orders data with three different tabs. \Each tab has a set of data displayed based on conditions and ordered based on some criteria.
10 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
Thank you for replying back 🙏
10 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
I believe the fix for this specific case is to use getCountForPagination(), it works
$totalRows = $records ? $records->count() : $query->getQuery()->getCountForPagination();
$totalRows = $records ? $records->count() : $query->getQuery()->getCountForPagination();
10 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
@Dan Harrin what do you think about it
10 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
No description
10 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
It seems that the count() when used with groupBy() it returns wrong number.
10 replies
FFilament
Created by kool on 9/3/2024 in #❓┊help
Export Action Only Few Rows with GroupBy
Any ideas why?
10 replies
FFilament
Created by Mercules 🚀⚡ on 7/3/2024 in #❓┊help
Table Builder with dynamic array source?
I would prefer you to create your custom component using livewire and integrate with filament features such as actions and notifications. Saloon as a solution comes with a lot of limitations.
10 replies
FFilament
Created by Mercules 🚀⚡ on 7/3/2024 in #❓┊help
Table Builder with dynamic array source?
sheeeeeeeeeeeeeeeeeeeeeeeeesh
10 replies
FFilament
Created by EMMAN on 7/3/2024 in #❓┊help
CUSTOM COLOR ON BADGE
No description
10 replies
FFilament
Created by EMMAN on 7/3/2024 in #❓┊help
CUSTOM COLOR ON BADGE
10 replies
FFilament
Created by kool on 7/1/2024 in #❓┊help
Duplicate Queries in Repeater with Relationship
No description
6 replies
FFilament
Created by kool on 7/1/2024 in #❓┊help
Duplicate Queries in Repeater with Relationship
No description
6 replies
FFilament
Created by kool on 7/1/2024 in #❓┊help
Duplicate Queries in Repeater with Relationship
-------------------------- If I added relationship, it does not work, I don't know why
Repeater::make('items')
->relationship()
->label('')
->addActionLabel('Add Problematic Item')
->reorderable(false)
->columns(['md' => 4])
->schema([
Select::make('items')
->relationship('items', 'sku')
->label('Order Item')
->required(),
TextInput::make('quantity')
->required(),
Select::make('reason')
->options(OrderItemUnavailableReason::toOptionsArray())
->required(),
TextInput::make('note'),
])
]
Repeater::make('items')
->relationship()
->label('')
->addActionLabel('Add Problematic Item')
->reorderable(false)
->columns(['md' => 4])
->schema([
Select::make('items')
->relationship('items', 'sku')
->label('Order Item')
->required(),
TextInput::make('quantity')
->required(),
Select::make('reason')
->options(OrderItemUnavailableReason::toOptionsArray())
->required(),
TextInput::make('note'),
])
]
6 replies