Board index » Web Programming » Form Tab order
|
geetarman
|
|
geetarman
|
Form Tab order
Web Programming402
I have created a form with a table inside to layout my fields. I have set the tab order but the form does not follow the settings. This is an asp page. Is this because of the table inside the form, if so is there a workaround or is there a better way to layout a form? Thanks Dave - |
| Thomas
Registered User |
Wed Dec 14 07:59:42 CST 2005
Re:Form Tab order
URL to the form?
-- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) ============================================== If you feel your current issue is a results of installing a Service Pack or security update, please contact Microsoft Product Support Services: support.microsoft.com">support.microsoft.com If the problem can be shown to have been caused by a security update, then there is usually no charge for the call. ============================================== "Dave" <davekstl@charter.net>wrote in message news:eR1d8XLAGHA.3436@TK2MSFTNGP10.phx.gbl... QuoteI have created a form with a table inside to layout my fields. I have set the tab order but the - |
| Dave
Registered User |
Wed Dec 14 08:02:42 CST 2005
Re:Form Tab order
It is on a secure server on the intranet.
"Thomas A. Rowe" <tarowe@mvps.org>wrote in message QuoteURL to the form? - |
| Thomas
Registered User |
Wed Dec 14 08:14:13 CST 2005
Re:Form Tab order
Ok, then can you paste the Code view into a post here?
-- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) ============================================== If you feel your current issue is a results of installing a Service Pack or security update, please contact Microsoft Product Support Services: support.microsoft.com">support.microsoft.com If the problem can be shown to have been caused by a security update, then there is usually no charge for the call. ============================================== "Dave" <davekstl@charter.net>wrote in message news:%23NWrOcLAGHA.3296@TK2MSFTNGP12.phx.gbl... QuoteIt is on a secure server on the intranet. - |
| Dave
Registered User |
Wed Dec 14 10:00:02 CST 2005
Re:Form Tab order
Thanks for the responses. The page is 500 lines. I can send a single
entry. I created a form and inside the form a created a table 6 columns wide and in there all over the page I have test fields. Is this a bad thing? <input type="radio" name="Track" value="Yes" tabindex="17"> "Thomas A. Rowe" <tarowe@mvps.org>wrote in message QuoteOk, then can you paste the Code view into a post here? - |
| Thomas
Registered User |
Wed Dec 14 10:47:12 CST 2005
Re:Form Tab order
Shouldn't be a problem unless you have duplicate tabindex numbers, and all of the form fields are
within the table which is surrounded by a single pair of form tags. -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) ============================================== If you feel your current issue is a results of installing a Service Pack or security update, please contact Microsoft Product Support Services: support.microsoft.com">support.microsoft.com If the problem can be shown to have been caused by a security update, then there is usually no charge for the call. ============================================== "Dave" <davekstl@charter.net>wrote in message news:uduxrdMAGHA.3984@TK2MSFTNGP14.phx.gbl... QuoteThanks for the responses. The page is 500 lines. I can send a single entry. - |
| Dave
Registered User |
Wed Dec 14 14:00:28 CST 2005
Re:Form Tab order
If I understand you correctly I should do this:
<form><input type="radio" name="Track1" value="Yes" tabindex="1"></form> <form><input type="radio" name="Track2" value="Yes" tabindex="2"></form> within each table cell Not this: <form><input type="radio" name="Track1" value="Yes" tabindex="1"> <input type="radio" name="Track2" value="Yes" tabindex="2"></form> Thanks for the responses. Dave "Thomas A. Rowe" <tarowe@mvps.org>wrote in message QuoteShouldn't be a problem unless you have duplicate tabindex numbers, and all - |
| Thomas
Registered User |
Wed Dec 14 14:07:30 CST 2005
Re:Form Tab order
No.
<form> <table> rows, columns, form fields </table> </form> -- ============================================== Thomas A. Rowe (Microsoft MVP - FrontPage) ============================================== If you feel your current issue is a results of installing a Service Pack or security update, please contact Microsoft Product Support Services: support.microsoft.com">support.microsoft.com If the problem can be shown to have been caused by a security update, then there is usually no charge for the call. ============================================== "Dave" <davekstl@charter.net>wrote in message news:%23BZKQkOAGHA.3984@TK2MSFTNGP14.phx.gbl... QuoteIf I understand you correctly I should do this: - |
