It appears that for some other JavaScript libraries kendo-ui had a datetimepicker to handle date selection and time selection.
I can't seem to find one for the angular 2+ library or in their documentation. Does anyone know if there is a datetimepicker?
If not, what are some strategies for handling a JavaScript date object where you need to manage both the date and time, using Angular2 formcontrols?
Edit: I am aware that kendo has a datepicker. I am looking for a datetimepicker. (a date picker that I can also manage the time component).
What I am trying to accomplish is this. In Angular 4/5, I have a reactive form created from formbuilder. In my object I have a datetime field. I was looking for a component that would handle managing both the date and time portion of this datetime object. I figured that I could combine the datepicker and timepicker but I am unsure how to do this with formcontrols. I was hoping that kendo may have had a datetimepicker. Since they do not I will research how to do this using the datepicker and timepicker components.