Re: [web2py] Help : SQLFORM.factory with multiple submit button ?

2011-07-15 Thread Patrick Installe
Solved :-) I respond to myself :-) I was looking in the wrong direction :-( Thank for the previous reponses, but in my case they doesn't fit since I construct a graph instead of a list. The solution template that works for me : In the controler : def widget_submit_button(field,value): #

[web2py] Help : SQLFORM.factory with multiple submit button ?

2011-07-13 Thread Patrick Installe
Hello, I have series of forms with in final validation. I would like that the user could go forward and backward between forms. Quite classical. I use SQLFORM.factory which I think is right equilibrium for the application. I would like to have in the forms one button forward and one button

Re: [web2py] Help : SQLFORM.factory with multiple submit button ?

2011-07-13 Thread Kenneth Lundström
I think this is what you are looking for: http://labs.blouweb.com/powerformwizard http://www.google.com/url?sa=Dq=http://labs.blouweb.com/powerformwizard Kenneth Hello, I have series of forms with in final validation. I would like that the user could go forward and backward between forms.

Re: [web2py] Help : SQLFORM.factory with multiple submit button ?

2011-07-13 Thread Bruno Rocha
I have used two approaches, the old one that you can find here: http://www.web2pyslices.com/slices/take_slice/127 and the new way using a plugin: http://labs.blouweb.com/powerformwizard With the first you can have more custom options and can use forms for different tables, with the former you

Re: [web2py] Help : SQLFORM.factory with multiple submit button ?

2011-07-13 Thread Jim Steil
PowerFormWizard? http://labs.blouweb.com/powerformwizard -Jim On 7/13/2011 9:27 AM, Patrick Installe wrote: Hello, I have series of forms with in final validation. I would like that the user could go forward and backward between forms. Quite classical. I use SQLFORM.factory which I