The problem i am having is that when i use an onclick event i want it to submit only a single cell of a table or form rather than every cell. how will this be done? is it using multiple forms for each table cell or is it easier than this. can anyone help?
def var cchar as char no-undo.
assign cchar = get-value("thistable")
<form method="get" name"thisform">
<table name="thistable">
<tr>
<input type="hidden" value="james">
<td onclick="this.form.submit" value="james"></td>
<input type="hidden" value="scott">
<td onclick="this.form.submit" value="scott"></td>
</tr>
</table>
</form>
def var cchar as char no-undo.
assign cchar = get-value("thistable")
<form method="get" name"thisform">
<table name="thistable">
<tr>
<input type="hidden" value="james">
<td onclick="this.form.submit" value="james"></td>
<input type="hidden" value="scott">
<td onclick="this.form.submit" value="scott"></td>
</tr>
</table>
</form>