Using the tab key in an ASPX web forms page loses the tab stop order ONLY when run in...

  • Thread starter Thread starter ChuChuBingRama
  • Start date Start date
C

ChuChuBingRama

Guest
This is driving me crazy. Ive developed a WebForms web site using .NET Framework 4.0, Visual Studio 2010, Visual Basic, the ajaxcontroltoolkit and jquery 1.9.1.

When testing the web page, the user uses the tab key to go from one textbox to the next, entering values.

On machines running Windows XP and IE 8 (every one of them) going from the 2nd textbox to the 3rd textbox (and not from the first to second) the cursor goes off in to oblivion and does not have focus anywhere on the web page. The tabindex for each control is set to 0. I also tried setting them in order (1, 2, 3, 4)

If I run in compatibility mode on my Windows 8 machine or on a Windows 7 machine in IE 8 I cannot reproduce... only on Windows XP can I get this to happen.

Im at my wits end on this if any body has any suggestions.

The textboxes are 3 in a horizontal row and each have a filtered ajaxcontroltoolkit extender on them that allows numerics only like this:

<asp:TextBox ID="txtBipad" runat="server" AutoPostBack="True" CssClass="textEntry" MaxLength="20 </asp:TextBox>
<ajaxToolkit:FilteredTextBoxExtender ID="txtBipad_FilteredTextBoxExtender" runat="server" Enabled="True" FilterType="Numbers" TargetControlID="txtBipad </ajaxToolkit:FilteredTextBoxExtender>
There are no code behind events set up for any of these textboxes at this time. I had code running validation logic in place at first, but removed everything to try and troubleshoot this issue. I need to have the textboxes all set to "AutoPostBack="True"" individually.

Continue reading...
 
Back
Top