autocomplete.rst 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. ============
  2. Autocomplete
  3. ============
  4. By default Django JET renders all possible choices for select inputs. This behavior may be unwanted if number of
  5. available options is rather big. In this case Django JET allows you to load these options dynamically through AJAX.
  6. In order to achieve this functionality all you have to do is:
  7. -
  8. Specify which model fields should be searchable by AJAX queries. Add this static method which must return
  9. a ``tuple`` or ``list`` of fields you want to be searchable with AJAX:
  10. .. code:: python
  11. @staticmethod
  12. def autocomplete_search_fields():
  13. return 'field1', 'field2'
  14. # for single field
  15. @staticmethod
  16. def autocomplete_search_fields():
  17. return 'field1',
  18. Example from Django JET demo site:
  19. .. code:: python
  20. class Address(models.Model):
  21. name = models.CharField(_('name'), max_length=255)
  22. city = models.ForeignKey(City, verbose_name=_('city'), related_name='addresses')
  23. zip = models.IntegerField(_('zip/postal code'))
  24. class Meta:
  25. verbose_name = _('address')
  26. verbose_name_plural = _('addresses')
  27. unique_together = ('name', 'city')
  28. def __str__(self):
  29. return self.name
  30. @staticmethod
  31. def autocomplete_search_fields():
  32. return 'name', 'city__name'
  33. - Use custom AJAX filter class ``jet.filters.RelatedFieldAjaxListFilter`` if you have any foreign key list filters:
  34. .. code:: python
  35. from jet.filters import RelatedFieldAjaxListFilter
  36. class PersonAdmin(admin.ModelAdmin):
  37. list_filter = (
  38. ...
  39. ('address', RelatedFieldAjaxListFilter),
  40. )
  41. - Now all your admin select boxes will perform AJAX queries to load available options while you type.
  42. .. note::
  43. This work for both ForeignKey and ManyToManyField fields.