Bootprap datepicker not loading

I am trying to install bootstrap datepicker and it is not loading. I installed the demo here on jsfiddle: https://jsfiddle.net/950g0oku/6/

Entry field

<input id="id_dates-0-starts" class="datepicker field_required" type="text" name="dates-0-starts">

and javascript

$(".datepicker").datepicker();

I expect when I click on the box that the calendar should show. Using bootstrap datepicker here https://bootstrap-datepicker.readthedocs.org/en/latest/

+4
source share
1 answer

If you want to use bootstrap-datepicker , you will need to enable the library itself. I updated your example to make it work!

You were missing these library files:

<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.1/css/bootstrap-datepicker3.css"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.1/js/bootstrap-datepicker.js"></script>

. : https://jsfiddle.net/950g0oku/8/

+2

Source: https://habr.com/ru/post/1608459/


All Articles