Re: Disable ModelChoiceField field in ModelForm
problem solved.
from django.forms import ModelForm,Select
prg_type = forms.ModelChoiceField(queryset=ProgramType.objects.all(),widget=Select(attrs={'disabled':'disabled'}))
in forms.py
-- On Sat, May 12, 2012 at 4:53 PM, Min Hong Tan <tan.django@gmail.com> wrote:
hi,I have a foreign field show in the modelform, and i wish to disable it, may i know how to disable it in modelform?i tried attrs={'disabled':'disabled} but, it prompt doesn't have attrs attribute.Regards,MH
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