如何使用X-editable自动完成typeahead?

时间:2013-11-25 20:46:35

标签: python django autocomplete typeahead typeahead.js

我需要在Django app中使用带有x-editable的typeahead。我的来源是远程ajax功能。 HTML:

  <div class="controls">
    <a href="#" id="industry" data-type="typeahead" data-title="Input industry">
      {% if init_dict.industry %}{{ init_dict.industry }}{% else %}Enter industry {% endif %}</a>
  </div>

脚本:

$('#industry').editable({
  params: { 'csrfmiddlewaretoken': csrf},
  type: 'text',
  title: 'Enter industry',
  url: '/companyHouse/editable/pending/company/industry/',
  pk: {{ init_dict.pending_company_pk }},
  source: ['/companyHouse/query/tag/?query=%QUERY'],
  items: 8,
  value: '{{ init_dict.industry }}'
});

我得到的错误是本地,预取或远程之一是必需的 任何帮助表示赞赏!

0 个答案:

没有答案