daerentis
daerentis
FFilament
Created by daerentis on 4/18/2024 in #❓┊help
How can i disable the Relation Manager on the Infolist?
Ok, found it in the docs... https://filamentphp.com/docs/3.x/panels/resources/relation-managers#conditionally-showing-relation-managers Just needed to add that method to my Relation Manager Class
3 replies
FFilament
Created by daerentis on 6/21/2023 in #❓┊help
SelectFilter with options from custom query
Ohhhh, right! That solved it and saved me some hours, thank you very much!
4 replies
FFilament
Created by daerentis on 5/16/2023 in #❓┊help
Check if table is filtered by a user
Thank you for the hint!
17 replies
FFilament
Created by daerentis on 5/16/2023 in #❓┊help
Check if table is filtered by a user
public function isFiltered()
{
if ($this->getTableFilterState('filterName')['value']) {
return true;
}
}
public function isFiltered()
{
if ($this->getTableFilterState('filterName')['value']) {
return true;
}
}
17 replies
FFilament
Created by daerentis on 5/16/2023 in #❓┊help
Check if table is filtered by a user
I just tried something like this, im still into it but I think that could work:
17 replies
FFilament
Created by daerentis on 5/10/2023 in #❓┊help
extraAttributes on Bulk Actions not working correctly?
Ok, i will. Thank you
6 replies
FFilament
Created by daerentis on 5/10/2023 in #❓┊help
extraAttributes on Bulk Actions not working correctly?
I am trying to close the bulk action dropdown item when the action() is done. Thought on adding a x-on:click event on the button. Looking for attributes in the <button> of the bulk action
6 replies
FFilament
Created by daerentis on 5/9/2023 in #❓┊help
Get the selected records in table inside a Widget
Ok, i solved it differently now. I created a Bulk Action and did the calculation inside the action() Method and emit an Event. In the Widget i then listen to this event and refresh the Widget component.
3 replies