I have one field of radio buttons, and a second where one would enter a numeric value in a text box.
Trying to generate the sum of those two in a third field, which is also a textbox (the radio buttons are all different numerical amounts).
I know it's probably something extremely simple and I just don't know what to tell the field. I've tried a variety of different things based off the examples/demos without much success (I understand the logic but it's not working using my example) but what I've come back to is below that makes easy sense for me...
For the third field, $(DonationAmount)...
$(DonationAmount) = funcRadioCalc($(DonationAmount1_FieldID)) + $(DonationAmount2)
In that third field text box, it displays the values of those first two (without character spaces), so I know I'm getting somewhere with it. I just simply want it to perform an arithmetic function of the two.
Any help is appreciated, much thanks.
Jack
EDIT: And, I don't think I want to parseInt or round up/down to a value of 125.00, for example (maybe I'm completely incorrect about how the parseInt function works). If somebody enters a value of 125.39 in that $(DonationAmount2) field, for example, I'd like to do the math for it as such.