View Single Post
Old 09-14-2008, 10:14 AM   PM User | #4
olcentum
New to the CF scene

 
Join Date: Sep 2008
Posts: 8
Thanks: 4
Thanked 0 Times in 0 Posts
olcentum is an unknown quantity at this point
Is there a way to put the numbers in a separate cell, and have multiple text fields in the table so the group of 3 fields would count as 1 and the next group would count as 2 and so on like I have below?
-ol


<html>
<head>
<meta http-equiv="content-type"
content="text/html; charset=ISO-8859-1">
<title></title>
</head>
<body>
<table style="text-align: left; width: 100px;" border="2"
cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td
style="vertical-align: middle; white-space: nowrap; text-align: center;">test1</td>
</tr>
<tr>
<td align="center" nowrap="nowrap"
valign="middle">
<table style="text-align: left; width: 100px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td align="center" nowrap="nowrap"
valign="middle"><input maxlength="30" name="a1"></td>
</tr>
<tr>
<td align="center" nowrap="nowrap"
valign="middle"><input maxlength="30" name="a2"></td>
</tr>
<tr>
<td align="center" nowrap="nowrap"
valign="middle"><input maxlength="30" name="a3"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
<br>
<table style="text-align: left; width: 100px;" border="2"
cellpadding="2" cellspacing="2">
<tbody>
<tr>
<td
style="vertical-align: middle; white-space: nowrap; text-align: center;">test2</td>
</tr>
<tr>
<td align="center" nowrap="nowrap"
valign="middle">
<table style="text-align: left; width: 100px;"
border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td align="center" nowrap="nowrap"
valign="middle"><input maxlength="30" name="b1"></td>
</tr>
<tr>
<td align="center" nowrap="nowrap"
valign="middle"><input maxlength="30" name="b2"></td>
</tr>
<tr>
<td align="center" nowrap="nowrap"
valign="middle"><input maxlength="30" name="b3"></td>
</tr>
</tbody>
</table>
</td>
</tr>
<tr>
</tr>
</tbody>
</table>
<br>
</body>
</html>
olcentum is offline   Reply With Quote