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

AsyncUpload Tabbing issue

1 Answer 33 Views
AsyncUpload
This is a migrated thread and some comments may be shown as answers.
Rajender
Top achievements
Rank 1
Rajender asked on 23 Aug 2014, 07:23 AM
Dear Team,

I have 3 controls. First one is textbox, second is AsyncUpload and Third is textbox  again. Initially we are focusing on textbox1 and enter 'Tab' button from keyboard focusing on AsyncUpload Control and when i again click on 'Tab' from keyboard it needs to focus on textbox2 where as it is happening on double tab from keyboard.

Please let me know how i can solve this issue.

Thanks and Regards,
Rajender.A

1 Answer, 1 is accepted

Sort by
0
Princy
Top achievements
Rank 2
answered on 25 Aug 2014, 08:17 AM
Hi Rajender, 

As a work around please try to attach the onkeydown event of RadAsyncUpload as follows.

ASPX:
<telerik:RadTextBox ID="RadTextBox1" runat="server">
</telerik:RadTextBox>
<telerik:RadAsyncUpload ID="RadAsyncUpload1" runat="server" onkeydown="selectTextBox();">
</telerik:RadAsyncUpload>
<telerik:RadTextBox ID="RadTextBox2" runat="server">
</telerik:RadTextBox>

JavaScript:

function selectTextBox() {
    if (event.keyCode == 9) {
        event.preventDefault();
        $find("<%=RadTextBox2.ClientID%>").focus();
    }
}

Thanks,
Princy. 
Tags
AsyncUpload
Asked by
Rajender
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
Share this question
or