Django: Unable to populate checkbox using MultipleChoiceField with CheckboxSelectMultiple

524 views Asked by At

I am trying to save the choices(options) selected by the user in the database and populate(check/select) the same using the data saved in the database.

Model:

class ScheduledEvent(models.Model):

event_id            = models.IntegerField()
project_id          = models.ForeignKey(Project, db_column = 'project_id')
start_date          = models.DateTimeField(null = False, default = timezone.now)
end_date            = models.DateTimeField(null = False, default = timezone.now)
next_scheduled_date = models.DateTimeField(default = timezone.now)
include_week_day    = models.CharField(max_length=200)
include_month_day   = models.CharField(max_length=200)

The remaining code:

weekdays=(('Mon',"Monday"),
        ('Tue','Tuesday'),
        ('Wed','Wednesday'),
        ('Thr','Thrusday'),
        ('Fri','Friday'),
        ('Sat','Saturday'),
        ('Sun','Sunday'))


class CheckBoxdays(forms.ModelForm):
    model = ScheduledEvent
    included_week_day = forms.MultipleChoiceField(choices=weekdays, widget=forms.CheckboxSelectMultiple)

The options are getting saved in the database but the choices(options) are not getting populated from the data stored in the database.

But the following code works correctly:

weekdays=(('1',"Monday"),
        ('2','Tuesday'),
        ('3','Wednesday'),
        ('4','Thrusday'),
        ('5','Friday'),
        ('6','Saturday'),
        ('7','Sunday'))

class CheckBoxdays(forms.ModelForm):
    model = ScheduledEvent
    include_week_day = forms.MultipleChoiceField(choices=weekdays, widget=forms.CheckboxSelectMultiple)

The options are populated when the first value in the choice tuple is be a single character. Am I doing something wrong here??

1

There are 1 answers

4
ger.s.brett On

You have to use the Model version of the MultipleChoiceFile to do what you want to do:

class CheckBoxdays(forms.ModelForm):
    model = ScheduledEvent
    include_week_day = forms.ModelMultipleChoiceField(choices=weekdays, widget=forms.CheckboxSelectMultiple)