Skip to content
A simple Django application to test django-ajax-selects
Branch: master
Clone or download
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
annexes
projet_ajax
.gitignore
README.md

README.md

Django test autocomplete

The purpose of this project is to test and document the jquery plugins which can be used with Django_ for autocomplete fields.

Curently these 3 modules have been tested:

.. _Django: https://www.djangoproject.com/

Auto-complete is one of the most important aspects of modern web interface.

Auto-complete feature is used to provide auto suggestion for users while entering input. We can create auto-complete using an AJAX call to make a list and display the list using javascript. Creating auto-complete with jquery and jquery-ui is the most efficient way of creating it.

When using you need to retrieve all values from the database before displaying the form. This is a potentially expensive operation on the server and delays the time when the user see the form.

You can’t perform that action at this time.