Hi Ivo
Is there a way that the change is only fired when user tabs out of the field instead of the moment user tried to type in the first character.
$(“#jqxDateTimeInput”).jqxDateTimeInput({
width: ‘250px’,
height: ’25px’,
theme: ‘energyblue’,
value : null
});
$(‘#jqxDateTimeInput’).on(‘change’, function (event) {
alert(“Change has been made”);
});
In the example above you will see that the on change is fired twice.(try entering a date)
Thanks
Nitin K