Changes between Initial Version and Version 1 of Ticket #33042
- Timestamp:
- 08/23/21 04:51:56 (10 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33042
- Property Keywords widget added; checkbox removed
- Property Owner changed from nobody to cloudy-sfu
-
Property
Status
changed from
new
toassigned
-
Property
Type
changed from
Bug
toCleanup/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?