akash sagar
how to perform some stuff before dispatching an event in action
public function clearAction(): Action
{
return Action::make('clear')
->size(ActionSize::Large)
->dispatch('clear-form');
} this action is clearing localstorage but i also want to clear form data along with this, for that i want to do this $this->form->fill(); can anyone please help me where i should use this ?
3 replies