Re: FormWizard and ImageField - "this field is required" error

2009-05-20 Thread ringemup
UPDATE: I found a workaround, but it's not pretty. Has anyone done this in a more elegant manner? 1) when defining the initial data to pass into the FormWizard (I do this in a view wrapped around the FormWizard): if len(request.FILES): initial.update({'request_files':request.FILES})

FormWizard and ImageField - "this field is required" error

2009-05-20 Thread ringemup
In the last step of my FormWizard, I have an ImageField. I've made sure that the uploaded image is appearing in request.FILES, but I'm still getting a "this field is required" error upon submission. I assume that this problem is related to this ticket: http://code.djangoproject.com/ticket/7439