On May 27, 9:32 pm, Jochem Berndsen <joc...@functor.nl> wrote:
> All,
>
> Is there an easy way to include "conditional fields" in forms within the
> Django framework. By "conditional fields", I mean fields that are shown
> or not shown depending on earlier choices the user made in the form.
> What would be the canonical way to implement this?
>
> Thanks for your consideration.
> Regards,
>
> --
> Jochem Berndsen | joc...@functor.nl
> GPG: 0xE6FABFAB

interesting question if you want to solve it server side

just my two cents:

I think it's better to add this functionality by javascript, as you
won't need to contact the server all the time. Of course, this makes
it more difficult to validate your forms, but a complex ``clean``
method might still work.

My second solution would be to create several pages and forms, and
load the next extended form as the user advances. You should be able
to do it even without saving the partial data by passing it as the
initial value to the second form. Or you might be able to use the form
wizard under django.contrib.

Anyway, I would like to see what others have to say! :)

have a nice day,
V
--~--~---------~--~----~------------~-------~--~----~
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+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to