Below code has an example of a textbox with validator, and radtextboxes with validator.
If you run the code, and tab through the fields, the textbox skips over the validator and tabs into the next radtextbox field, however, the radtextboxes tab right into the validators. You can see a tiny little sliver where they stop. The user definitely wouldn't know what happened to their cursor. You have to tab twice to get to the next textbox.
This seems to be a bug with the radtextbox. What can be done?
If you run the code, and tab through the fields, the textbox skips over the validator and tabs into the next radtextbox field, however, the radtextboxes tab right into the validators. You can see a tiny little sliver where they stop. The user definitely wouldn't know what happened to their cursor. You have to tab twice to get to the next textbox.
This seems to be a bug with the radtextbox. What can be done?
<tr> |
<td colspan="3"> |
<asp:TextBox ID="TextBox3" runat="server"></asp:TextBox> |
<asp:RequiredFieldValidator ControlToValidate="TextBox3" ErrorMessage="Failure" ID="RequiredFieldValidator3" |
runat="server"></asp:RequiredFieldValidator> |
</td> |
</tr> |
<tr> |
<td colspan="3"> |
<telerik:RadTextBox ID="RadTextBox1" runat="server"> |
</telerik:RadTextBox><br /> |
<asp:RequiredFieldValidator ControlToValidate="RadTextBox1" ErrorMessage="Failure" |
ID="RequiredFieldValidator1" runat="server"></asp:RequiredFieldValidator> |
</td> |
</tr> |
<tr colspan="3"> |
<td colspan="3"> |
<telerik:RadTextBox ID="RadTextBox2" runat="server"> |
</telerik:RadTextBox><br /> |
<asp:RequiredFieldValidator ControlToValidate="RadTextBox2" ErrorMessage="Failure" |
ID="RequiredFieldValidator2" runat="server"></asp:RequiredFieldValidator> |
</td> |
</tr> |
Thanks,
Moon