pickadate.js
pickadate.js copied to clipboard
Reinit picker after stop()?
Learning by the docs, I couldn't reenable picker with following code:
<input type="text" id="d">
$(document).ready(function(){
$('#d').pickadate({});
var picker = $('#d').pickadate('picker');
picker.stop();
picker.start();
});
Picker goes into readonly mode, however it is still possible to set date and following returns true:
console.log( picker.get('start') );
+1