Re: Disable ModelChoiceField field in ModelForm

2012-05-12 Thread Min Hong Tan
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 wrote: > hi, > > I have a foreign field

Disable ModelChoiceField field in ModelForm

2012-05-12 Thread Min Hong Tan
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