Hi,
I've used ejs-timepicker control using a syntax similar to this:
<ejs-timepicker ref="timePicker" floatLabelType="Auto" placeholder="Tempo realizzazione TOTALE (ore:minuti:secondi)" :step="timeStep" :format="timeFormat" v-model:value="timeVal"></ejs-timepicker>
having these bindings in the data section:
timeStep: 1,
timeFormat: 'H:mm:ss',
timeVal: new Date(),
If I change the time using the list of values provided by the control on the right side, everything works fine, but, instead, if I change the value manually typing in the input area and I don't write times that are included in the proposed list on the right, the variable "timeVal" is set to null instead of the value supplied by the user.
How can I fix this beahviour and have the binded value correctly set even when the user types his own time?
Thank you.
Silvio