Re: Uploads in the Form Wizard

2010-05-04 Thread Russell Keith-Magee
On Mon, May 3, 2010 at 12:02 PM, Wiiboy wrote: > What would be the best workaround (or is there one)? > Perhaps overriding FormWizard.process_step()? The only obvious workaround I can think of is to treat the N-form wizard problem as a (N-1) form wizard, plus 1 normal form that handles file uploa

Re: Uploads in the Form Wizard

2010-05-02 Thread Wiiboy
What would be the best workaround (or is there one)? Perhaps overriding FormWizard.process_step()? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group

Re: Uploads in the Form Wizard

2010-05-02 Thread Wiiboy
Oh. Dang. Thanks for your help Russell. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.co

Re: Uploads in the Form Wizard

2010-05-02 Thread Russell Keith-Magee
On Mon, May 3, 2010 at 11:49 AM, Wiiboy wrote: > Is that in trunk (i.e. could I revert to an older SVN revision and > have it work)? Technically, yes, but you'd have to revert to a pre-1.0 revision. The FileField refactoring occurred over 2 years ago. Yours, Russ Magee %-) -- You received this

Re: Uploads in the Form Wizard

2010-05-02 Thread Wiiboy
Is that in trunk (i.e. could I revert to an older SVN revision and have it work)? -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to

Re: Uploads in the Form Wizard

2010-05-02 Thread Russell Keith-Magee
On Mon, May 3, 2010 at 11:32 AM, Wiiboy wrote: > Hi guys, > I'm trying to use the form wizard for a model.  The problem is, I have > an ImageField in the last step, but I keep getting a "This field is > required" on it.  request.FILES contains the uploaded file, however. > > Can I use ImageField's

Uploads in the Form Wizard

2010-05-02 Thread Wiiboy
Hi guys, I'm trying to use the form wizard for a model. The problem is, I have an ImageField in the last step, but I keep getting a "This field is required" on it. request.FILES contains the uploaded file, however. Can I use ImageField's in a Wizard? -- You received this message because you ar