Changes between Initial Version and Version 1 of Ticket #33042
- Timestamp:
- Aug 22, 2021, 11:51:56 PM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33042
- Property Keywords widget added; checkbox removed
- Property Owner changed from to
- Property Status new → assigned
- Property Type Bug → Cleanup/optimization
-
Ticket #33042 – Description
initial v1 27 27 Enter a list of values. 28 28 29 If I re place the sentence in form class by29 If I remove widget setting like: 30 30 31 31 {{{ 32 fill_na_avg = forms.ModelMultipleChoiceField(Column.objects.all(), widget=forms.CheckboxInput(),required=False)32 fill_na_avg = forms.ModelMultipleChoiceField(Column.objects.all(), required=False) 33 33 }}} 34 34 35 It works. 35 It works. So, why widget affects the validation of forms?