In form, that displays the checkbox do something like this:
def __init__(self, *args, **kwargs):
super(FormName, self).(*args, **kwargs)
if self.instance and self.instance.checkboxfieldname != None: #we check
if this form has instance and if checkbox :
attrs = {'checked':'checked'}
else:
attrs = {}
self.fields['checkboxfieldname'] = forms.BooleanField(widget =
forms.CheckboxInput(attrs = attrs))
should work.
alan
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/django-users/-/lP_vQlywfOEJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en.