Hi,
I am using the ejs.calendars.TimePicker component with the following properties:
value: new Date('1/1/2018 08:00'),
format: 'HH:mm',
step: 15,
change: calculateTotalHours,
width: '50%'
It is possible to type in different values (for example: 999999) while this is not possible in the TimePicker in the ASP.NET Core example. You can only type in valid values. I want to stop the user from typing in wrong values and automatically add the ":" as I was using an input mask. I tried setting the type of the input field to type="time", but then the styling is messed up and Firefox adds a "clear" button. The left timepicker has this type="time", the right doesn't, but the user can add everything when typing.
Is it possible to only allow "time"-values when typing in the timepicker?
Thanks!