Re: How to create a form with dynamic number of fields?

2008-11-16 Thread Ryan Witt
I've recently had a situation where I needed to create dynamic forms and corresponding code to handle them. One thing that you should know about python is that there's nothing special about classes, you can take a collection of attributes and methods and use them to create a new class on-the-fly

Re: How to create a form with dynamic number of fields?

2008-11-16 Thread Ryan Witt
I've recently had a situation where I needed to create dynamic forms and corresponding code to handle them. One thing that you should know about python is that there's nothing special about classes, you can take a collection of attributes and methods and use them to create a new class on-the-fly