Question
populate field.
is there any way where if i select an option (see below) and
that when it is selected it will put the price of the product below
it.... the list would have eg 4 items if not more. so when i select
item 1 it will say £1.99 in the location <td>
****PRICE
GOES HERE****</td> below...... I would like to do this
just in coldfusion and not anything else. (javascript) etc......
<tr>
<td></td>
<td><b>Product:</b></td>
<td><select size="1" name="test1"><cfoutput query="getproducts"><option value="#getproducts.Name#">#getproducts.name#</option></cfoutput></select></td>
<td></td>
<td></td>
</tr>
<cfoutput>
<tr>
<td></td>
<td><b>Price</b></td>
<td> ****PRICE GOES HERE****</td>
<td></td>
<td></td>
</tr>
<tr>
<td></td>
<td><b>Product:</b></td>
<td><select size="1" name="test1"><cfoutput query="getproducts"><option value="#getproducts.Name#">#getproducts.name#</option></cfoutput></select></td>
<td></td>
<td></td>
</tr>
<cfoutput>
<tr>
<td></td>
<td><b>Price</b></td>
<td> ****PRICE GOES HERE****</td>
<td></td>
<td></td>
</tr>