I use TimeLineView with Timescales.Minutes.
When our scheduler shows period less than a day (for example 0:00-12:00) we have corrupted view with only one column and without possibility to scroll to appointments. After some investigation I see that the method GetRenderCellsCount() has next code:
if (startDate > this.RangeEndDate.Date)
return calculatedMaximum;
This code check whole DateTime of starting with only Date of Ending. So, when our scheduler shows period less than a day (for example 0:00-12:00) we have corrupted view with only one column and without possibility to scroll to appointments.
Also, because properties RangeStartDate and RangeEndDate contain time, but StartDate only with date. We can’t setup Timeline view to start from the middle of day, because StartDate will be less then RangeStartDate.
Hi there,
I’d like to create a RadDropDownButton with the characteristics depicted in the attached screenshot. Described textually, they fall into these two categories:
Look: The index (which should be one, rather than zero, based) of each RadMenuItem is displayed in the left column. (In the screenshot, these are numbers 1 - 3).
Behavior: If the RadDropDownButton is expanded and its RadMenuItems thus visible, typing 1,2 3, etc will result in the click event of the corresponding RadMenuItem being called. For example, looking at the screenshot, typing “2” would cause the “Update Across” click handler to be called.
Would you please suggest the best way of accomplishing this? Any guidance would be quite appreciated!