I am using the Wicked gem for multi-step forms and i plan on implementing a custom ajax method, so I will not be able to use the render_wizard method. Right now I am just trying to manually move to the next step. The following does not work:
def update
jump_to next_step
render step
end
I've also tried:
def update
render next_step
end
but the step never actually changes. So just putting "render next_step" keeps on calling the same step because "step" never changes
How do i manually move to the next step?