Crylar
Crylar
FFilament
Created by ericmp on 8/22/2024 in #❓┊help
Add Action For Table Group
This would be epic if we could have this in v4... I needed this sort of functionality recently.
9 replies
FFilament
Created by Nick Ruddra on 6/29/2024 in #❓┊help
Can I add action to Table Group ?
No description
8 replies
FFilament
Created by Nick Ruddra on 6/29/2024 in #❓┊help
Can I add action to Table Group ?
I guess what OP was looking was an ability to include actions on the right corner for the grouping. In his original request he was looking for a custom view action that would open a resource that is representing a particular invoice. In my case, I have many products grouped by category, and looking forward to have an action on the right side of the group, so I could access that particular category resource, or do some other related actions.
8 replies
FFilament
Created by Nick Ruddra on 6/29/2024 in #❓┊help
Can I add action to Table Group ?
Did you manage to find a solution to this?
8 replies
FFilament
Created by @uwascan on 9/21/2023 in #❓┊help
Selective Multi-tenancy
Unfortunately, you still can't mix shared with tenant related resources because of the url. I wish we could have shared stuff above the dropdown with global urls :/
17 replies
FFilament
Created by @uwascan on 9/21/2023 in #❓┊help
Selective Multi-tenancy
Any update on the topic? 🙂
17 replies
FFilament
Created by Crylar on 5/11/2023 in #❓┊help
Is there a way to have a confirmation dialogue on ToggleColumn on table?
Thanks, I will do. 🤝
12 replies
FFilament
Created by Crylar on 5/11/2023 in #❓┊help
Is there a way to have a confirmation dialogue on ToggleColumn on table?
Yeh, I guess this could work, just need to dive deeper into the code. :))
12 replies
FFilament
Created by Crylar on 5/11/2023 in #❓┊help
Is there a way to have a confirmation dialogue on ToggleColumn on table?
Yeh I know this could be done on the edit page/modal but I have a simple form for restaurant staff going where it would be very uncomfortable for them to move around the CRUD, so the idea was to have it all that is used frequently available on the table but there is an edge case where I would want to have a confirmation dialog when he is trying to change from a particular state. 🙂
12 replies
FFilament
Created by Crylar on 5/11/2023 in #❓┊help
Is there a way to have a confirmation dialogue on ToggleColumn on table?
Correct me but I am not sure if we have a toggle action right now?
12 replies
FFilament
Created by Crylar on 5/11/2023 in #❓┊help
Is there a way to have a confirmation dialogue on ToggleColumn on table?
In my case, I have some resets going on a model observer, so confirmation with an explanation is a must for the user. If it was just a simple true / false toggle then yes but I have a valid edge case / reason to have this available here too. 🙂
12 replies
FFilament
Created by Roshan_k on 5/11/2023 in #❓┊help
Redirect
or just a second url parameter true
12 replies
FFilament
Created by Roshan_k on 5/11/2023 in #❓┊help
Redirect
Tables\Actions\Action::make('test')
->url(fn ($record) => route('location.point', [$record->qr_code]), true)
Tables\Actions\Action::make('test')
->url(fn ($record) => route('location.point', [$record->qr_code]), true)
12 replies
FFilament
Created by Roshan_k on 5/11/2023 in #❓┊help
Redirect
when used on a custom action
12 replies
FFilament
Created by Roshan_k on 5/11/2023 in #❓┊help
Redirect
->openUrlInNewTab() ? 😄
12 replies
FFilament
Created by Crylar on 5/1/2023 in #❓┊help
What are my options to use repeater component as collapsible element inside table?
I guess this is a final goal to have orders and sub-table for products, so our staff would not need to click around a lot and have everything visible. The only question is how to achieve it without doing much of customisation.
6 replies
FFilament
Created by Crylar on 5/10/2023 in #❓┊help
Is it possible to update state of a single row in the records table?
I thought constructor was a proper way but not sure now. 🙂
49 replies
FFilament
Created by Crylar on 5/10/2023 in #❓┊help
Is it possible to update state of a single row in the records table?
I mean I want to add an additional item to this.
49 replies
FFilament
Created by Crylar on 5/10/2023 in #❓┊help
Is it possible to update state of a single row in the records table?
protected $queryString = [
'isTableReordering' => ['except' => false],
'tableFilters',
'tableSortColumn' => ['except' => ''],
'tableSortDirection' => ['except' => ''],
'tableSearchQuery' => ['except' => ''],
];
protected $queryString = [
'isTableReordering' => ['except' => false],
'tableFilters',
'tableSortColumn' => ['except' => ''],
'tableSortDirection' => ['except' => ''],
'tableSearchQuery' => ['except' => ''],
];
49 replies
FFilament
Created by Crylar on 5/10/2023 in #❓┊help
Is it possible to update state of a single row in the records table?
In the end, I do not need this contructor except I want to augment queryString when extending from ListRecords
49 replies