I've just been trying to use the SliderExtender on a textbox and find that I can tab off the first text box and onto the slider but I can't tab off the slider and onto the next textbox! It works in all other browsers but internet explorer :/ does anyone
know a work around?
matteus_beus
Member
1 Points
13 Posts
SliderExtender tabbing issue in internet explorer
Feb 07, 2013 06:17 PM|LINK
I've just been trying to use the SliderExtender on a textbox and find that I can tab off the first text box and onto the slider but I can't tab off the slider and onto the next textbox! It works in all other browsers but internet explorer :/ does anyone know a work around?
<form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server" /> <div> <asp:TextBox ID="TextBox1" runat="server" TabIndex="1" /> <asp:TextBox ID="txtStarScore" runat="server" TabIndex="2" /> <asp:SliderExtender ID="se" runat="server" TargetControlID="txtStarScore" Minimum="0" Maximum="5" Steps="6" /> <asp:TextBox ID="TextBox2" runat="server" TabIndex="3" /> </div> </form>chetan.sarod...
All-Star
66519 Points
11260 Posts
Re: SliderExtender tabbing issue in internet explorer
Feb 08, 2013 02:37 AM|LINK
Refer this
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/Slider/Slider.aspx and http://www.asp.net/ajaxlibrary/act_Slider.ashx
Senior Software Engineer,
Approva Systems Pvt Ltd, Pune, India.
matteus_beus
Member
1 Points
13 Posts
Re: SliderExtender tabbing issue in internet explorer
Feb 08, 2013 08:28 AM|LINK
Thank you for your response, I've read both of these pages but it doesn't seem to discuss tabbing or how to resolve it at all.