I cannot figure out what control should I use to meet such requirements:
- user can enter time (hh:mm)
- user can delete some time from the list
- time should be come to Action method in format (11:00, 13:00, 11:00
or 11:00 13:00 11:00 or if it is possible
DateTime.ToString(HH:mm)
)
Maybe image will clarify what I mean:
I've tried to use Html.DropDownList
but as far I understand that I cannot add time to this control in runtime.
What HTML helper or element should I use to meet such requirements?