[web2py] Re: Wizard builder

2011-12-02 Thread bluemoth
@Alan, thanks, I did think about subclassing FORM which would build of existing code. @Anthony, thanks, Power Form Wizard looks like a start to what I'm wanting. However, it's not clear if you can build forms without using database structures. I can't imagine it would be difficult to change to bui

[web2py] Re: Wizard builder

2011-12-01 Thread Anthony
Maybe this will help: http://labs.blouweb.com/powerformwizard/default/index On Tuesday, November 29, 2011 4:10:03 PM UTC-5, bluemoth wrote: > > Hi all, > > I'm involved with a project that requires many wizards to collect > information. I could build these wizards by hand or develop a module > to

[web2py] Re: Wizard builder

2011-12-01 Thread Alan Etkin
On the last lines you wrote. What about using the web2py plugin system to subclass forms? On plugin_wizard.py: class MyWizard(SQLFORM): def __init__(self, auth): ... Just a comment, don't know if it is correct or it has design/ performance issues. Then it would be possible to reuse