I am very new to Django. I want to create a editable drop down box. After searching I found the below code to create the dropdown list.
Choices1 = [("0", _("0")), ("1", _("1")),("2", _("2"))[("3", _("3"))]
_list = forms.ChoiceField( choices=choices1,label=_("ListExample"),required=False)
It displays the drop down box. But this is not an editable field. It does not allow me to edit the value , it just allows me to select. I want to make this dropdown/choice filed as editable box.
Thanks, Kalai