Problem when creating a form with both django-autocomplet-light and and bootstrap-datepicker-plus widgets

隐身守侯 提交于 2021-02-08 08:53:16

问题


I am trying to create a form which uses two different widgets:

- some fields are using django-automplete-light ModelSelect2 widget
- another field is using bootstrap_datepicker_plus DatePickerInput widget

However, I can't manage to make them both work: when I create a form with DatePickerInput only, the calendar shows correctly, but when I add fields using ModelSelect2, the calendar doesn't popup anymore.

Does anybody know what could cause this problem and how to solve it?

In settings.py I set 'include_jquery' = True for BOOTSTRAP4 Below is an extract of the form code:

from django.forms import ModelForm
from dal import autocomplete
from bootstrap_datepicker_plus import DatePickerInput

class CreateWhoForm(ModelForm):

    class Meta:

        model = m.Who
        fields = (
            'why',
            'how',
            'begins'
        )
        widgets = {
            # when 'why' and 'how' are commented, DatePickerInput() calendar widget shows correctly
            # when they are present, the calendar widget doesn't show anymore
            'why': autocomplete.ModelSelect2(
                url='core:why-autocomplete'
            ),
            'how': autocomplete.ModelSelect2(
                url='core:how-autocomplete'
            ),
            'begins': DatePickerInput()
        }

And some of the html used:

<pre>
{% load static %}
{% load bootstrap4 %}
{% bootstrap_css %}
{% bootstrap_javascript jquery='full' %}

{{ form.media }}

{% for field in form %}
    <div class="form-group{% if field.errors %} has-error{% endif %}">
    <label for="{{ field.id_for_label }}">{{ field.label }}</label>
    {% render_field field class="form-control" placeholder=field.help_text %}
    {% for error in field.errors %}
       <p class="help-block">{{ error }}</p>
    {% endfor %}
    </div>
{% endfor %}

</pre>

回答1:


I had the same problem and it appears to be an issue with initializing JQuery multiple times. Since you are loading in JQuery with Bootstrap and Autocomplete-light loads in JQuery also, there appears to be a conflict. Deleting static/automplete_light/jquery.init.js appears to fix the problem.



来源:https://stackoverflow.com/questions/58644969/problem-when-creating-a-form-with-both-django-autocomplet-light-and-and-bootstra

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!