Hello,
I have run into the same/similar issue when using the jqxDateTimeInput.
I am using JQW v17.0.1.
I have two fields on a form – #fromDate and #toDate. Both get initialized to today’s date. User can change.
const dateProps = {width: 140,
height: 30,
formatString: 'MM/dd/yyyy',
showFooter: true,
allowNullDate: false
}
$("#fromDate").jqxDateTimeInput(dateProps);
$("#toDate").jqxDateTimeInput(dateProps);
When I select a date from the pop-up it works fine. If I paste a date into the input field it pastes properly.
However, when I type directly into the date input field it just ZEROES out the field and then I end up with 01/01/1900
This occurs on both input fields.
I have followed the example but am lost as to why this might happen. Is there anything wrong with my initialization?
Thanks for your help.
Rob