Hello,
I am trying to implement a table so that an entire row of the table is selectable - basically, where you select an entire entry by clicking on the row.
The following snippet is how I have implemented a mock-up for this.
This is pretty much how I would like for it to look. What I would like to do, though, is implement it without all those ' ' symbols, so that it comes out formatted like a table regardless of the data.
Thanks in advance,
Tim
<html>
<script language="javascript">
</script>
<head>
<title>
Fire Detonation Logging
</title>
</head>
<body bgcolor="#6B86A4">
<form action="/geoviz/GWS03" method="POST">
<table border="1" width="600" cellpadding="0">
<tr>
<td width="100"><h4>Fire Time</h4></td>
<td width="100"><h4>Event ID</h4></td>
<td width="100"><h4>Firing Entity</h4></td>
<td width="100"><h4>Target</h4
></td>
<td width="100"><h4>Detonation
Time</h4></td>
<td width="100"><h4>Detonation
Result</h4></td>
</tr>
<tr>
<th colspan="6">
<select id="selectDetonationEvent"
width="3600" multiple>
<option width="3600">
19:00:00                
456000                    
blue2                          
pb01                          
19:00:01                              
hit          
</option>
<option width="3600">
19:10:03                
156222                    
viper1                        
px02                            
No Detonation                
No Detonation            
</option>
<option width="3600">
20:45:33                
246773                    
red5                            
VR09                          
19:00:01                              
miss          
</option>
</select>
</td>
</tr>
</table>
<input type="button" value="Go To Time"/>
<input type="button" value="Go To Time and Set Link"/>
<br>
<input type="checkbox" value="Enable Munition History"/>Enable Munition History
</form>
</body>
</html>
Start Free Trial