I've done this on my form. What I did was make subform and then place all the objects I wanted to be hidden and then made visible inside. I then used this code on the button:if (this.rawValue == "1") { oTargetField = this.resolveNode("subform name here"); oTargetField.presence = "hidden"...
I've fixed this by using the following:var currency = topmostSubform.IFFPage6.Page.FirstCustomer.decApproxExpend.rawValue *7;var currency1 = topmostSubform.IFFPage6.Page.SecondCustomer.decApproxExpend.rawValue *7;var currency2 = topmostSubform.IFFPage6.Page.SecondCustomer.decJointApproxExpend.rawVa...
Vjay,I'll try your way now. I've slightly changed how I've gone about it, I created a function named Seven and on a click told the tick button to run that function. I'll add your Java into that function now.
I'm trying to get the multiple of a decimal box so for example Box1 will have the number 100 You then need to tick a check box to multiply it Box2 will store the answerI have the following but it doesn't workvar Aprox = topmostSubform.IFFPage6.Page.FirstCustomer.decApproxNetIncom.rawValue Aprox=Apro...