无法让 django-inplaceedit 工作



我的HTML模板的顶部包含:

{% load inplace_edit %}

标题部分包含:

{% inplace_static %}

然后在我的身体内容中,我正在做:

{% inplace_edit "action.action_state" %}

但它不起作用。我已经安装了:

'bootstrap3',
'inplaceeditform_bootstrap',   # it is very important that this app is placed before inplaceeditform and inplaceeditform_extra_fields
'inplaceeditform',
'inplaceeditform_extra_fields',
'bootstrap3_datetime',

我已经尝试'django.template.loaders.eggs.Loader',启用和禁用。

它显示为可点击的文本,但是当我单击/双击时没有任何反应。我如何让它工作?

谢谢

赫克

在尝试@Goin的建议后,我发现我的 JQuery 文件没有正确导入。 不得不搬家:

<script type="text/javascript" charset="utf-8" src="{% static 'srt/js/jquery-1.10.2.min.js' %}"></script>
<script type="text/javascript" charset="utf-8" src="{% static 'srt/js/jquery-ui.min.js' %}"></script>

到我的标题块的顶部。任何使用Bootstrap的人,请确保将JQuery作为模板中的第一件事。

谢谢

相关内容

  • 没有找到相关文章

最新更新