Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/09/2010, 14:55
naciostars
 
Fecha de Ingreso: enero-2009
Ubicación: Neiva, Huila
Mensajes: 196
Antigüedad: 15 años, 3 meses
Puntos: 2
Respuesta: cambiar foco de select option

solo debes manejar la propiedad tabindex....

<html>
<head>
</head>
<body>
<form name="forma" method="post" action="">
<table align="center" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
                  <td width="21%" bgcolor="#CCCCCC">&nbsp;&nbsp;Nivel de aceite motor <font size="2" face="Verdana">&nbsp;
                    </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">&nbsp;<font size="2" face="Verdana">&nbsp;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">&nbsp;<font size="2" face="Verdana">&nbsp;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>
</form>
</body>
</html>


=)