beks_sudo72
i Want to add a action button like this "import woo to Airtable".
Hey there, I believe using actions would best fit your request. See
https://filamentphp.com/docs/3.x/tables/actions
4 replies
How to custom page form
This looks more like a table but the question here is apart from the second column, are the other cells editable?
if yes, then use table with text-input as described in the documentation (assuming v3)
https://filamentphp.com/docs/3.x/tables/columns/text-input
3 replies
actions modal already showing backdrop
Thank for the quick response, unfortunately I am only trying to use the Actions module for the filament so i am following this from the documentation https://filamentphp.com/docs/3.x/actions/adding-an-action-to-a-livewire-component. The button renders okay and from the network, an event is fired off, everytime you click, however the when I add I get the backdrop making it imposible to click anything on the page. Thanks again
9 replies
actions modal already showing backdrop
Right at the end of the component's view file making sure i have the one root element.
Component blade
<div>
<div>
{{ $this->deleteAction }}
</div>
<x-filament-actions::modals />
</div>
Component delete method
php
public function deleteAction(): Action
{
return Action::make('delete')
->requiresConfirmation()
->action(fn () => dump('action delete'));
}
php
Thank you for the help9 replies