I am working with AngularJS and I need to split a datetime-picker into two separate parts. Normally, when you open the calendar, you first select the day and then the time (hours and minutes). My goal is to have two different datetime-pickers - one for selecting the day and another for choosing the hours/minutes. I attempted to modify the initial format like this:
datetime-picker="dd/MM/yyyy HH:mm"
to
datetime-picker="HH:mm"
However, my modification did not produce the desired result.
The issue lies in the fact that when you click on the first calendar to open the initial datetime-picker, it requires you to choose the date before selecting the time. Ideally, I would like to be able to directly select hours and minutes without having to choose a date.
You can view the plunker showcasing the problem here: https://plnkr.co/edit/BLPsNszpUWjXuHXaj7hO?p=preview