I am trying to get keyboard input working in my application.
When I start typing in the control, the value goes to 00. Occasionally a number will get through on the year field. Though usually only 1 or 5. And only in the first value (so 1000 or 5000).
I see the examples that seem to work fine, but I can’t seem to figure out what is different in my scenario. (NOTE: Everything else works fine. I have the grid I am using as well and it works fine.)
I am using the code from this quesiton: http://www.jqwidgets.com/community/topic/can-not-write-date-from-keyboard-when-value-null/
$("#jqxdatetimeinput").jqxDateTimeInput({ width: '250px', height: '25px', showFooter: true, formatString: 'HH:mm', value: new $.jqx._jqxDateTimeInput.getDateTime(new Date()) });
Any ideas on something I could check would be appreciated.