Candace -
I ended up using a series of dropdownlists with the prices set for the value (1=10.00, 2= 20.00).
I have some trouble calculating the total. I have a field named "total" which is a read only text box. Upon selecting my quantity for each item, it calculates and I can see the amount appear in the textbox. I have two problems
1. I cannot get it to display in the innerHtml of a Custom HTML field like in the examples. Here is my client script for each of my dropdownlists:
$(total) = parseFloat($(QProd1)) + parseFloat($(QProd2)) + parseFloat($(QProd3)) + parseFloat($(QProd4)) + parseFloat($(QProd5)) + parseFloat($(QProd6)) + parseFloat($(QProd7)) + parseFloat($(QProd8));
GrandTotal.innerHTML = 'Your grand total comes to: ' + formatCurrency($(total)) + '';
2. I cannot pass the total into PayPal by using $(total). Here is my PayPal parameters:
&item_name=MOFAS¤cy_code=USD&amount=$(total)&no_shipping=1&first_name=$(FirstName)&last_name=$(LastName)&email=$(Email)
Why am I having problems with my total field?
-Thanks