Hello,
I have accessed the start date time picker from the advanced form of my scheduler and have implemented custom time values as below.
Dim startPicker As RadTimePicker = TryCast(e.Container.FindControl("StartTime"), RadTimePicker)
startPicker.TimeView.CustomTimeValues = New TimeSpan() {New TimeSpan(8, 30, 0), New TimeSpan(12, 30, 0)}
However, when I run the program, the custom values are in place but the labels remain the same? (see attached)
Is there any way to access and change the labels, so only labels for my custom time values are shown?
Thanks in advance,
Kieran