Datepicker prefil current date
Posted: Wed May 27, 2015 2:27 pm
I tried to prepopulate the date picker field with the current date like this:
in nueditform.js but that seems not to work.
Code: Select all
var currentOnClick = e.getAttribute('onclick');
e.setAttribute('onclick', currentOnClick+';nuPopupCalendar(this);');
var currentOnBlur = e.getAttribute('onblur');
e.setAttribute('onblur', currentOnBlur+';nuBlurDateField()');
$(".date-pick").datepicker();
$(".date-pick").datepicker("setDate", new Date());