How to set initial custom variable date upon datepicker opening in Materialize
7
I use two Materialize datepickers. Upon opening the date picker I want the date that in already in html input field to be displayed / used by the date picker. I was thinkig of onOpen
callback and there use native .setDate()
function. But I got two date pickers and did not find if onOpen accepts any arguments.
var datepickerOptions ={
format: 'yyyy-mm-dd',
autoClose : "true",
firstDay : 1,
onOpen : function(arg) {
console.log(arg)
}
}
document.addEventListener('DOMContentLoaded', function() {
var elems = document.querySelectorAll('.datepicker');
var instances = M.Datepicker.init(elems, datepickerOptions);
});
I am using Materialize v1.0. and working jsFiddle is here
javascript materialize
Add a comment
|