Saturn
Saturn
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
any idea ?
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
you suggested answer for an custom/normal action. If you can suggest for table action, which has parameters to them Eg: https://demo.filamentphp.com/blog/categories in same page we have table with view action that shows details of particular row. its call to server is: mountTableAction('View',1) where View is the action name & 1 is the record
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
my action has parameters to it eg: mountTableAction('Proof',3) where 'Proof' is action name & 3 is table id
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
so basically whenever user redirects to my resource page with that particular query parameter in the url, I want to open the modal( just like we do when we click on any table record, a modal opens) but this time without clicking but through query parameter,
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
its in resouces pages directory, its a simple resource.
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
mountTableAction of the table component is the only action I need to call
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
proof is not an action but a query parameter
19 replies
FFilament
Created by Saturn on 5/2/2024 in #❓┊help
Call action after page load to table mount action
class ManageProofRequesteds extends ManageRecords
{
protected static string $resource = ProofRequestedResource::class;
#[Url]
public ?string $proof;

public function mount():void
{
parent::mount();
$this->js('$wire.mountTableAction("Proof",'.$this->proof.")");
}
}
class ManageProofRequesteds extends ManageRecords
{
protected static string $resource = ProofRequestedResource::class;
#[Url]
public ?string $proof;

public function mount():void
{
parent::mount();
$this->js('$wire.mountTableAction("Proof",'.$this->proof.")");
}
}
Url with query parameter: http://...../admin/proof-requesteds?proof=3 But in this case the action is getting called early before table livewire component is loaded and thus causing error. I need to call $this->js('$wire.mountTableAction("Proof",'.$this->proof.")"); after page load,
19 replies
FFilament
Created by Saturn on 3/8/2024 in #❓┊help
image editor mode with mode 0
or my last option is to add description to file upload but i dont think we can do that
4 replies
FFilament
Created by Saturn on 2/21/2024 in #❓┊help
Grid View on custom page
like version 1 can be placed between version 2 and 3
5 replies
FFilament
Created by Saturn on 2/21/2024 in #❓┊help
Grid View on custom page
No description
5 replies
FFilament
Created by dennis_de on 10/17/2023 in #❓┊help
Tooltip Position
not that i used any position class on btn, its naturally there where it should be but tooltip is not where it should be
5 replies
FFilament
Created by dennis_de on 10/17/2023 in #❓┊help
Tooltip Position
No description
5 replies
FFilament
Created by dennis_de on 10/17/2023 in #❓┊help
Tooltip Position
same error im trying to set the tooltip to a custom filament btn. but my tooltip is showing somewhere else.
5 replies
FFilament
Created by Saturn on 12/23/2023 in #❓┊help
Make Image clickable
i think this will work coz i have few details to show at the same time so earlier i use to show in model but now i can call that model on click of image. i think.
6 replies
FFilament
Created by Saturn on 12/13/2023 in #❓┊help
Display timeline
hmm
4 replies
FFilament
Created by Saturn on 12/12/2023 in #❓┊help
Change the UI of repeater
i found the table-repeater.blade.php file
3 replies
FFilament
Created by Saturn on 12/12/2023 in #❓┊help
Change the UI of repeater
ohh it worked
3 replies