In the admin form, how do you filter a django choicefield on the basis of value of another choicefield.

For example, if a choicefield is having "fruits" and "vegetables", then on selection of fruits, the second choicefield should have "apple,pear,orange" etc.Similarly one selection of vegetables the field should show "brinjal,lady finger,cabbage"

Thanks in advance

link|improve this question
2  
You'd have to use JavaScript if you want dynamic filtering without a page refresh. If the user can somehow submit the form and you have a chance to re-display the form with filtered choices, you can always modify the form.fields['my_field'].choices attribute. – Yuji Tomita Dec 16 '11 at 6:45
feedback

1 Answer

You could probably accomplish that with grouped selects in django-smart-selects. The default is outputting a drop down menu. And you should be able to modify it to output radio buttons instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.