Changes between Initial Version and Version 1 of Ticket #33386, comment 3
- Timestamp:
- Dec 25, 2022, 11:39:05 PM (23 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #33386, comment 3
initial v1 1 we can disable autocomplete field in python django as below: 2 3 hidden_widget = MultipleHiddenInput(attrs={'autocomplete': 'off'}) 4 widget = SelectMultiple(attrs={'autocomplete': 'off'}) 5 6 As well as we have one more option to set widget- 7 autocomplete = False like is_localized = False, is_required = False and so on..