I am using 2.9.3 and also tried 3.0.2 with the same problem.
I am unable to use the numbers on the keybaord to enter hours in my datetimeinput fields. What it does is it looks like it understand that the user types something but every number is resulting as a 0. Here’s my code.
// Set Time var startTime = "@event.startTime"; var splitStartTime = startTime.split(":"); $("#iIdStartTime").jqxDateTimeInput({ value: new Date(1970, 1, 1, splitStartTime[0], splitStartTime[1]) ,width: inputDefaultWidth ,height: inputDefaultHeight ,formatString: 'HH:mm' ,showCalendarButton: false ,allowNullDate: false ,theme:"s360" });
The only way to left to use the field is with the arrows, which is not intuitive.
I tried with Chrome and Firefox.