I'm setting the value through data binding:
[DataType(DataType.Time)]
[Display(Name = " ")]
public DateTime StartTime { get; set; }
formObject.StartTime = someDateTime;
The data is being displayed correctly. However, if I tap on the TimePicker, the selected Time is always current time.
How can I change this so that the selected time inside the TimePicker is actually whatever time the property is currently set to?
As you can see in this screenshot, the time is 02:49 PM. But the TimePicker shows 6:49.