Questions tagged [django-autocomplete-light]

django-autocomplete-light is an open source app that provides a new approach to auto-complete implementations, specially for Django.

django-autocomplete-light is an open source app that provides a new approach to auto-complete implementations, specially for . It ships its own auto-complete script, which is different because:

  • it expects the auto-complete to be rendered on the server side, which makes any kind of customization much simpler,
  • it doesn't take any action when a choice is selected. Instead it just triggers a event, which makes it usable for any kind of purpose.

It is also called django-autocomplete-light because the Python API relies on Django widgets and no hack. This makes it portable and usable in any Django form, including in the admin.

Resources

Resource list is maintained in the README.

303 questions
-1
votes
1 answer

django autocomplete light can't input string

i've tried using django-autocomplete-light with following the docs guide, and in the end i cannot input string to search the data, here the picture I can't input string to search data. heres my code: views.py from django.shortcuts import…
triefauzan
  • 25
  • 4
-1
votes
1 answer

What are "values" in autocomplete_light

I don't understand what values are in the django-autocomplete-light library. Nor what validate_values() and choices_for_values() does. I am instantiating my autocomplete like this: forms.py class MyForm(forms.Form): search_field2 =…
-4
votes
1 answer

permissions in django for the group of users

In my wen application i mad different login for different person like for HR ,for engineer ,for owner using django user creation form , and authenticate them using Django authentication ,now everything is work very well i am able to add user from…
1 2 3
20
21