Need to retrieve field from wizard step before
I need to get a field value from a step before in a wizard step form. I need this value for some live calculations.
When I am dd($get) I get all the childcomponents, but I dont know how to access them.
If I collapse all the things ($get) gives me I see
I need the Step with key = 1, but I really don't know how to access this step. Please someone could help.
2 Replies
you can access the form data directly, not need to go through the steps. Eg if you have a
title
field , you can access it by using $get('title')
.Thank you so much this works!