I am using kendo ui using time picker 24h display success but I am get it data yyyy-mm-ddThh:mm:ss 000z but I need hh:mm only. How to change it?
Get it time value :
"2018-10-07T19:30:00.000Z"
my need:
selected time only 09:10
I am using kendo ui using time picker 24h display success but I am get it data yyyy-mm-ddThh:mm:ss 000z but I need hh:mm only. How to change it?
Get it time value :
"2018-10-07T19:30:00.000Z"
my need:
selected time only 09:10
If you wanted the timepicker to display it in HH:mm, then format is the way to go like :
but if you wanted the value to be HH:mm you need to use
parseDate()
andtoString()
like:Working example, check console log