Set Column with header action
How can i set a text column value by header action button? I try with $set, but it throws this error
Thanks
Solution:Jump to solution
maybe
```php
->action(function () {
SendPostToCustomerAction::run($this->record);
$this->refreshFormData(['status']);...
5 Replies
could you explain what are you trying to do?
I have a form, with Header Action buttons.
This run an action (change Post status and send email). In this form i have a select that shows current status, and i want to change it after action its executed. I try to use $set but it throws this error
on EditPage, right?
Solution
maybe
?
It works perfect, thanks @Leandro Ferreira !