Hi

I am embedding wizard in a LOAD

{{=LOAD('default', 'f1', ajax=True, ajax_trap=True)}}



def f1():
    form = FORM(...)

    if form.process().accepted:
        #I do something
        redirect(URL('f2'))
    
    return form




def f2():
    form = FORM(...)

    if form.process().accepted:
        #I do something
        redirect(URL('f3'))
    
    return form




def f3():
    form = FORM(...)

    if form.process().accepted:
        #I do something
        redirect(URL('f_end'))
    
    return form



After submit in f1, works well and redirects to f2, but when you submit in 
f2 does what I expect and redirects to f1 (should redirect to f3)

Any idea how to fix it

Best Regards,
José

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to