Hi Everyone,
I wonder how a user can edit or select hours. I use the datepicker control with property DateTimeFormat.ShortTime
as the following image, but I get the calendar instead of time(hours).
Solved! Go to Solution.
Do not use a DatePicker for this. Instead, create two new dropdowns.
Dropdown_Hours: put this code in the Items property
["00","01","02",...,"22","23"]
Dropdown_Minutes: put this code in the Items property
["00","01","02",...,"58","59"]
More details here...
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."
Do not use a DatePicker for this. Instead, create two new dropdowns.
Dropdown_Hours: put this code in the Items property
["00","01","02",...,"22","23"]
Dropdown_Minutes: put this code in the Items property
["00","01","02",...,"58","59"]
More details here...
---
Please click "Accept as Solution" if my post answered your question so that others may find it more quickly. If you found this post helpful consider giving it a "Thumbs Up."