Re: Creating a "wizard"

2007-01-12 Thread Honza Král
have a look at ticket http://code.djangoproject.com/ticket/3218 it contains a proposed wizard class for newforms - simply subclass it, override the done() method and then instantiate it with a list of newform classes... if you need more functionality (dynamic forms etc.) you will have to override

Re: Creating a "wizard"

2007-01-12 Thread gordyt
Howdy Bram, Here is an example of something that I am doing with newforms and sessions and it seems to work very well. In my case I have a search form displayed. Depending upon the options that are selected by the user, when they submit the form it will be handled by one of several different vi

Re: Creating a "wizard"

2007-01-12 Thread [EMAIL PROTECTED]
Bram, If I recall, there have been some discussions about building this sort of capability in new forms. However, you can see how I've done something similar in Satchmo using the old forms implementation. It's not automatic, but it does allow someone to move through all three steps and the fina

Creating a "wizard"

2007-01-12 Thread Bram
Hi all, I started working with Django some time ago, and i've to say that I like the framework so far. However, now I would like to create a kind of wizard for an ordering system. In short, a process with back/next/cancel buttons. It would be nice to save everything in the session or some other t