This is a migrated thread and some comments may be shown as answers.

TimePopupButton does not inherit TabIndex

0 Answers 57 Views
DateTimePicker
This is a migrated thread and some comments may be shown as answers.
swegele
Top achievements
Rank 1
swegele asked on 31 Dec 2015, 05:20 PM

On the RadDateTimePicker with TabIndex set...only the CalendarPopupButton inherits TabIndex from parent picker while TimePopupButton does not.

So user will tab to the DateTimeTextbox and then tab to Calendar <a> tag...then tab order will skip over the TimeButton.

I have this workaround.

$(function () {
    setTimeout(function () {
        var fromToDatePicker = $find("<%=RadDatePickerFromTo.ClientID%>");
        var fromToTimeControl = fromToDatePicker.get_timePopupButton();
        fromToTimeControl.tabIndex = fromToDatePicker.get_textBox().tabIndex;

No answers yet. Maybe you can help?

Tags
DateTimePicker
Asked by
swegele
Top achievements
Rank 1
Share this question
or