Почему я получаю ошибку jquery -ui при загрузке графика Bokeh? - PullRequest
0 голосов
/ 23 апреля 2020

Загрузка файла jquery -ui.min. js, но все равно получение jquery -ui требуется для включения ошибки DataTable.reorderable при попытке внести изменения в мой Bokeh DataTable.

Полученная ошибка: bokeh-tables-2.0.1.min. js: 46 [bokeh] jquery -ui требуется для включения DataTable.reorderable

My html JS и CSS код загрузки

<!--   JS Files   -->

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>

<!-- Bokeh CSS and JS -->

<link
     href="http://cdn.pydata.org/bokeh/release/bokeh-2.0.1.min.css"
    rel="stylesheet" type="text/css">
<link
   href="http://cdn.pydata.org/bokeh/release/bokeh-widgets-2.0.1.min.css"
   rel="stylesheet" type="text/css">


<script src="http://cdn.pydata.org/bokeh/release/bokeh-2.0.1.min.js"></script>
<script src="http://cdn.pydata.org/bokeh/release/bokeh-widgets-2.0.1.min.js"></script>

<!-- local js files -->
<script src="../static/assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="../static/assets/js/core/bootstrap.min.js" type="text/javascript"></script>
<script src="../static/assets/js/plugins/perfect-scrollbar.jquery.min.js"></script>

<!--  Google Maps Plugin    -->
<script src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE"></script>
<!-- Chartist JS -->
<script src="../static/assets/js/plugins/chartjs.min.js"></script>
<!--  Notifications Plugin    -->
<script src="../static/assets/js/plugins/bootstrap-notify.js"></script>
<!-- Control Center for Material Dashboard: parallax effects, scripts for the example pages etc -->
<script src="../static/assets/js/black-dashboard.js?v=1.0.0" type="text/javascript"></script></body>
</html>
'''

...