
May 31st, 2001, 01:11 AM
|
|
Contributing User
|
|
Join Date: Aug 2000
Location: Australia
Posts: 111
Time spent in forums: 7 m 19 sec
Reputation Power: 13
|
|
|
SUCCESS
Thanks anyway, but I have worked it out. I also was able to have radio buttons that changed the value in the text box.
code for anyone who cares
<table>
<tr>
<td></td>
<TD valign="top" NOWRAP><B>Average Spend:</B></TD>
<td><!--#in sql_handset_details_for_handset_code --><input type=text name=HIGH_AVG value="<!--#var HIGH_AVG -->"><!--#/in--></td>
<TD> <B>3 Month:</B> <!--#var 3_MONTH_AVG --> <INPUT type="radio" name="AVG_CALL_SPEND_BASIS" value="3M" language=javascript onclick="document.thisForm.HIGH_AVG.value='<!--#var 3_MONTH_AVG -->';" checked> </TD>
<TD> <B>6 Month:</B> <!--#var 6_MONTH_AVG --> <INPUT type="radio" name="AVG_CALL_SPEND_BASIS" value="6M" language=javascript onclick="document.thisForm.HIGH_AVG.value='<!--#var 6_MONTH_AVG -->';"></TD>
<td></td>
</tr>
</table>
|