Basically I want to stop the date selection when the user presses the enter key
inputbox.datepicker({ onSelect: function (date, detail) {
if (detail.lastVal != '') {
if(KeyCode===13) return; // where do i get KeyCode Here
this.value = fromdate + ' to ' + date;
}
else {
fromdate = this.value;
}
},
dateFormat: 'dd-mm-yy'
});
I want to pick two date in same input box and my input box also do search if i press enter key.
inputbox.on('keyup', function (e) {
if(e.keyCode===13){DoSearch();}
};