hello i have an issue when i want to using Wizard form there's a button below that i want to remove the button create , create&another and cancel.
#Why is the create button still rendering below even though I used a wizard?
12 messages · Page 1 of 1 (latest)
only available is on the last step.i have next button in form and submit on last step.I want to remove the button create , create&button and cancel
If you're using a form you can try to hide the actions with this
protected function getFormActions(): array
{
return [];
}
Got it!.Thank you👌
@odd warren I just wanted to ask what if how I can add a reset button to the form in wizard?
instead of return [] you can return any action you want. but it will appear on every step