소스 검색

Update autocompletion docs

Denis K 8 년 전
부모
커밋
e58911c3c1
1개의 변경된 파일20개의 추가작업 그리고 1개의 파일을 삭제
  1. 20 1
      docs/autocomplete.rst

+ 20 - 1
docs/autocomplete.rst

@@ -2,9 +2,13 @@
 Autocomplete
 ============
 
+
 By default Django JET renders all possible choices for select inputs. This behavior may be unwanted if number of
 available options is rather big. In this case Django JET allows you to load these options dynamically through AJAX.
 
+Configuration
+-------------
+
 In order to achieve this functionality all you have to do is:
 
 -
@@ -59,4 +63,19 @@ Example from Django JET demo site:
 - Now all your admin select boxes will perform AJAX queries to load available options while you type.
 
 .. note::
-    This work for both ForeignKey and ManyToManyField fields.
+    This work for both ForeignKey and ManyToManyField fields.
+
+Disabling autocomplete for form fields
+--------------------------------------
+
+Autocomplete is nice, but sometimes you don't want this behaviour (e.x. because you want to limit the provided
+queryset for a particular widget). In this case you can disable autocompletion this way:
+
+    .. code:: python
+
+        class YourForm(forms.ModelForm):
+            def __init__(self, *args, **kwargs):
+                super(YourForm, self).__init__(*args, **kwargs)
+                if SOME_CASE(self.instance):
+                    self.fields['FIELD_NAME'].autocomplete = False
+                    self.fields['FIELD_NAME'].queryset = Model.queryset.some_filter()