felipe_ceg Posted September 2, 2010 Report Share Posted September 2, 2010 estimados, tengo una consulta acerca del foco de un select option en esto momento tengo esta tabla: <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> Nivel de aceite motor <font size="2" face="Verdana"> </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="nivacea" style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> <option value="Medio"> Medio</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="nivaceb" style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td></tr> </table> <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> <font size="2" face="Verdana"> Nivel de combustible </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="nivcoma"style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="nivcomb"style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td> </tr></table> <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> <font size="2" face="Verdana"> Luces Delanteras </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="lucdela"style="width:127px"> <option value="Buen Estado"> Buen Estado</option> <option value="Mal Estado"> Mal Estado</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="lucdelb" style="width:127px"> <option value="Buen Estado"> Buen Estado</option> <option value="Mal Estado"> Mal Estado</option> </select></td> </tr> </table> bueno con esto, al presionar la tecla TABULAR del teclado se va moviendo hacia el lado... quiero saber como puedo hacerlo para que al presionar la tecla antes mencionada el foco baje hasta el final por la primera columna y luego comience con la segunda columna y empiece tambien a bajar... de antemano muchas gracias.... Responder Citando Link to comment Share on other sites More sharing options...
VITOCOMANGA Posted September 3, 2010 Report Share Posted September 3, 2010 estimados, tengo una consulta acerca del foco de un select option en esto momento tengo esta tabla: <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> Nivel de aceite motor <font size="2" face="Verdana"> </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="nivacea" style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> <option value="Medio"> Medio</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="nivaceb" style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td></tr> </table> <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> <font size="2" face="Verdana"> Nivel de combustible </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="nivcoma"style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="nivcomb"style="width:127px"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td> </tr></table> <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> <font size="2" face="Verdana"> Luces Delanteras </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="lucdela"style="width:127px"> <option value="Buen Estado"> Buen Estado</option> <option value="Mal Estado"> Mal Estado</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="lucdelb" style="width:127px"> <option value="Buen Estado"> Buen Estado</option> <option value="Mal Estado"> Mal Estado</option> </select></td> </tr> </table> bueno con esto, al presionar la tecla TABULAR del teclado se va moviendo hacia el lado... quiero saber como puedo hacerlo para que al presionar la tecla antes mencionada el foco baje hasta el final por la primera columna y luego comience con la segunda columna y empiece tambien a bajar... de antemano muchas gracias.... Responder Citando <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> Nivel de aceite motor <font size="2" face="Verdana"> </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="nivacea" style="width:127px" tabindex="1"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> <option value="Medio"> Medio</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="nivaceb" style="width:127px" tabindex="4"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td></tr> </table> <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> <font size="2" face="Verdana"> Nivel de combustible </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="nivcoma"style="width:127px" tabindex="2"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="nivcomb"style="width:127px" tabindex="5"> <option value="Full"> Full</option> <option value="Crítico"> Crítico</option> </select></td> </tr></table> <table align="center" width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td width="21%" bgcolor="#CCCCCC"> <font size="2" face="Verdana"> Luces Delanteras </font></td> <td width="28%" bgcolor="#CCCCCC"><select name="lucdela"style="width:127px" tabindex="3"> <option value="Buen Estado"> Buen Estado</option> <option value="Mal Estado"> Mal Estado</option> </select></td> <td width="46%" bgcolor="#CCCCCC"><select name="lucdelb" style="width:127px" tabindex="6"> <option value="Buen Estado"> Buen Estado</option> <option value="Mal Estado"> Mal Estado</option> </select></td> </tr> </table> Así? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now