$('#idTransDT').datepicker({
format: "dd-M-yyyy",
autoclose: true,
todayHighlight: true,
showOnFocus: true,
}).on('show', function (e) {
if (e.date) {
$(this).data('stickyDate', e.date);
}
else {
$(this).data('stickyDate', null);
}
}).on('hide', function (e) {
var stickyDate = $(this).data('stickyDate');
if (!e.date && stickyDate) {
$(this).datepicker('setDate', stickyDate);
$(this).data('stickyDate', null);
}
dateChanged();
});
Thank you. Visit my channel.
format: "dd-M-yyyy",
autoclose: true,
todayHighlight: true,
showOnFocus: true,
}).on('show', function (e) {
if (e.date) {
$(this).data('stickyDate', e.date);
}
else {
$(this).data('stickyDate', null);
}
}).on('hide', function (e) {
var stickyDate = $(this).data('stickyDate');
if (!e.date && stickyDate) {
$(this).datepicker('setDate', stickyDate);
$(this).data('stickyDate', null);
}
dateChanged();
});
Thank you. Visit my channel.
No comments:
Post a Comment