Re: Tough finding a form with dynamic fields out there
Daniel has point out the issue, but have a look at this speech from Django Con last year http://blip.tv/djangocon/advanced-django-form-usage-5573287. It has some great stuff in there.
-m
-- On 31 May 2012 06:14, Daniel Roseman <daniel@roseman.org.uk> wrote:
So, compare this:def __init__(self, mailboxes, *args, **kwargs):with how you're calling it:form = MboxReg(request.POST, int(mailboxes))and you should see why you're getting this:Error:Exception Value:int() argument must be a string or a number, not 'QueryDict'On the-- Mike for i in range(int(mailboxes)):--DR.--To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/z68uQEeQ4fsJ.
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
You received this message because you are subscribed to the Google Groups "Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home