Franck
Franck
FFilament
Created by Franck on 10/1/2023 in #❓┊help
Is chat.js widget enabling transitions animations ?
I have a doughnut where some partitions are involving in the time. FYI, I tried :
'animation' => [
'duration' => 1000,
],
'animation' => [
'duration' => 1000,
],
But when polling, the animation restarts since the beginning (like if each partition started from 0). What i'm looking for is a progress animation from state 1 to state 2, not from state 0 to state 2. All help welcomes 🙂 Thank you!
3 replies
FFilament
Created by dipu on 9/30/2023 in #❓┊help
open modal inside a modal
What about v3 ?
8 replies
FFilament
Created by dipu on 9/30/2023 in #❓┊help
open modal inside a modal
Wondering too
8 replies
FFilament
Created by rich06 on 9/15/2023 in #❓┊help
Table recordUrl() to open a modal?
I dunno if you solved your problem, but I think I had the same issue. Here is how I solved it :
$table
->recordAction('name of your action')
->actions([
ViewAction::make('name of your action')
->label('')
->icon(null)
->modalContent(fn (Model $model): View => view(
'filament.resources.model-resource.pages.view',
[
'model' => $model,
],
))
], position: ActionsPosition::BeforeColumns)
$table
->recordAction('name of your action')
->actions([
ViewAction::make('name of your action')
->label('')
->icon(null)
->modalContent(fn (Model $model): View => view(
'filament.resources.model-resource.pages.view',
[
'model' => $model,
],
))
], position: ActionsPosition::BeforeColumns)
The trick is adding ->recordAction('name of your action') to table and put null & '' for icon and label to the ViewAction I didn't find another way to achieve this. Hope it helps
16 replies
FFilament
Created by Franck on 9/26/2023 in #❓┊help
How to put user icon with user menu in the side nav bar ? At bottom left
Thank you
4 replies