Re: Django MultipleChoiceField and Multiple Checkbox

2017-05-16 Thread carlos
maybe this thrird party app help you https://github.com/goinnn/django-multiselectfield or read the code and gives you an idea On Tue, May 16, 2017 at 9:44 AM, wrote: > If i select 5 checkboxes then 5 rows should be inserted in DB. I > don't want to represent this form's selection in my database

Re: Django MultipleChoiceField

2017-05-16 Thread carlos
maybe this thrird party app help you https://github.com/goinnn/django-multiselectfield or read the code and gives you an idea On Tue, May 16, 2017 at 9:39 AM, wrote: > If i select 5 checkboxes then 5 rows should be inserted in DB. I > don't want to represent this form's selection in my database

Django MultipleChoiceField

2017-05-16 Thread mukulmantosh91
If i select 5 checkboxes then 5 rows should be inserted in DB. I don't want to represent this form's selection in my database as comma separated values. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop rec

Django MultipleChoiceField and Multiple Checkbox

2017-05-16 Thread mukulmantosh91
If i select 5 checkboxes then 5 rows should be inserted in DB. I don't want to represent this form's selection in my database as comma separated. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving

Django: MultipleChoiceField in admin to carry over previously saved values

2010-10-04 Thread Kasper
See the story here: http://stackoverflow.com/questions/3856163/django-multiplechoicefield-in-admin-to-carry-over-previously-saved-values It looks like the 'initial' values are not getting to the actual widget, because when debugging final_attrs in widget, it remains empty. I am s