Hello everybody, i try to add to my plugin datepicker functionality
kibana version: 5.5.2
node version 8.6.0
npm version 5.3.0
i try to use "jquery-datetimepicker": "^2.5.11":
first i install it, then i install jquery.
jquery version: 3.2.1
after in app.js i make import as:
var $ = require('jquery');
require('jquery-datetimepicker');
after in my controller i add rows:
$(document).ready(function(){
$('#datetimepicker').datetimepicker();
});
or only:
$('#datetimepicker').datetimepicker();
in html file i try to access to datepicker with:
bu in result i got exception:
TypeError: r is undefined (https://localhost:5601/twc/bundles/logtrail.bundle.js?v=8467:37727)
TypeError: r is undefined[Learn More] jquer:1
s/H.setOptions jquery.datetimepicker.full.min.js:1
datetimepickerFactory/e.fn.datetimepicker/< jquery.datetimepicker.full.min.js:1
each jquery.js:362
each jquery.js:157
datetimepickerFactory/e.fn.datetimepicker jquery.datetimepicker.full.min.js:1
[4824]/</< app.js:271
mightThrow jquery.js:3583
resolve/</process<
can anybody give some advice how to solve this problem?