Page 1 of 1

problem in managing tabs.

Posted: Fri Sep 23, 2005 2:30 am
by itsmani1
See this code i have problem in tabs management, when i use tab key it works horizontally means 1st I moves to top left field then goes to top right field in same row I want it to work it in vertical order like first top left and then 2nd field in the same column and so on.

Code: Select all

<form name="form1" method="post" action="">
  <table width="100%" border="0">
    <tr>
      <td><input type="text" name="textfield"></td>
      <td><input type="text" name="textfield4"></td>
    </tr>
    <tr>
      <td><input type="text" name="textfield2"></td>
      <td><input type="text" name="textfield5"></td>
    </tr>
    <tr>
      <td><input type="text" name="textfield3"></td>
      <td><input type="text" name="textfield6"></td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td><input type="submit" name="Submit" value="Submit"></td>
    </tr>
    <tr>
      <td>&nbsp;</td>
      <td>&nbsp;</td>
    </tr>
  </table>
</form>

Posted: Fri Sep 23, 2005 4:56 am
by s.dot
you'll need to change the layout of your table

Something like:

Code: Select all

<table>
 <tr>
  <td>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
  </td>
  <td>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
   form field<BR>
  </td>
 </tr>
</table>

Posted: Fri Sep 23, 2005 7:18 am
by Maugrim_The_Reaper