Bueno, ya he podido ponerme y lo he sacado. Ahora quiero que debajo de la tabla:
Código Javascript
:
Ver original<table width="100%" id="list" border="1" class="aparatos4" >
<thead>
<tr bgcolor=#9CF id=t70 ondblclick='coloreaf(70,1)' onMouseOver='coloreamosin(70,1)' onMouseOut='coloreamosout(70,1)'>
<th><span title="selecc">Selecc.</span></th>
<th><span title="num_aparato">NºAparato</span></th>
<th><span title="aparato">Aparato</span></th>
<th><span title="marca">Marca</span></th>
<th><span title="modelo">Modelo</span></th>
<th><span title="num_serie">NºSerie</span></th>
<th><span title="num_producto">Cod/12nc</span></th>
</tr>
</thead>
<?php do { ?>
<tr class="row" >
<th><input name="s" type="checkbox" class="check" value="<?=$row_ap_usuarios['NUM_APARATO'];?>"/></th>
<th><?php echo $row_ap_usuarios['NUM_APARATO']; ?></th>
<th><?php echo $row_ap_usuarios['APARATO']; ?></th>
<th><?php echo $row_ap_usuarios['MARCA']; ?></th>
<th><?php echo $row_ap_usuarios['MODELO']; ?></th>
<th><?php echo $row_ap_usuarios['NUM_SERIE']; ?></th>
<th><?php echo $row_ap_usuarios['NUM_PRODUCTO']; ?></th>
</tr>
<?php } while ($row_ap_usuarios = mysql_fetch_assoc($ap_usuarios)); ?>
<caption class="tb1CaptionBottom"></caption>
</table>
Al hacer click en el checkbox se me rellenen las cajas de texto de la fila seleccionada:
Código Javascript
:
Ver original<table width="100%">
<tr>
<td>Aparato</td>
<td><input name="aparato" type="text" /></td>
<td>Modelo</td>
<td><input name="modelo" type="text" /></td>
<td>NºSerie</td>
<td><input name="modelo" type="text" /></td>
</tr>
<tr>
<td>Marca</td>
<td><input name="marca" type="text" /></td>
<td>Cod/12Nc</td>
<td><input name="NUM_PRODUCTO" type="text" /></td>
<td>Revisión</td>
<td><input name="revision" type="text" /></td>
</tr>
</table>
Gracias por vuestro tiempo.