Hello,
I tried to search everywhere and also tried some "unusual solutions" using Js to create an autocomplete dropdown instead of bacis choice filter.
I have some long choices list (like :
MY_CHOICES = [ ("HI","Hight"),("LI","Little") ...]
and instead of create a select using ChoiceFilter I wanted to create an input that propose all possibles values based on what the user write.
Example :
- user write H
-input display all MY_CHOICES that begin by "H"
- user write Hi
-input display all value possible
- user click on one of them
-value fill the input
there is any way to do that with django-filters ?
My solutions don't work well cause the input will display the value "HI" instead of "Hight"
Sorry to disturb you.
Greatings,
Rocher Cyril.