Basically I am trying to implement javascript or formcalc to perform the following function...
When you check the highcost_Yes check box the value in field charge1 changes to 10, with no check in the highcost_Yes field the value of charge1 should be 8.
I have the default value for the charge1 field set to 8 as well if that may be causing me issues.
check box highcost_Yes (values set to 1 or 0)
This is the javascript snippit I tried:
if (highcost_Yes.rawValue ==1)
{
charge1 == 10
}else{
charge1 == 8
}
After some reaserch I tried this formcalc code:
if(highcost_Yes.rawValue == 1)then
(charge1==10)
elseif (charge1==8)
endif
I have been learning javascript this term in school so while I understand the concept I am far from practicing it efficiently.
Can anyone tell me where I went wrong? Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Sorry - no double == when setting the value:
if (highcost_Yes.rawValue == 1)
{
charge1.rawValue = 10;
}
else
{
charge1.rawValue = 8;
}
Views
Replies
Total Likes
Hi -
You need to add .rawValue to the code to set a value:
if (highcost_Yes.rawValue ==1)
{
charge1.rawValue == 10;
}
else
{
charge1.rawValue == 8;
}
Sorry - no double == when setting the value:
if (highcost_Yes.rawValue == 1)
{
charge1.rawValue = 10;
}
else
{
charge1.rawValue = 8;
}
Views
Replies
Total Likes
You are AWESOME!!
I absolutely love this community and the response times. Thanks so much for your assistance, I would give you 50 points if I could
Views
Replies
Total Likes
No prob! I have received a bunch of help here for my forms. It is a great place!
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies