Changes between Initial Version and Version 1 of Ticket #33386, comment 3


Ignore:
Timestamp:
Dec 25, 2022, 11:39:05 PM (21 months ago)
Author:
Eknath Baravkar

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33386, comment 3

    initial v1  
     1we can disable autocomplete field in python django as below:
     2
     3hidden_widget = MultipleHiddenInput(attrs={'autocomplete': 'off'})   
     4widget = SelectMultiple(attrs={'autocomplete': 'off'})
     5
     6As well as we have one more option to set widget-
     7autocomplete = False like is_localized = False, is_required = False and so on..
Back to Top