Expand my Community achievements bar.

Change Event problem

Avatar

Level 2

Is there anything wrong with this code?

if(this.rawValue == 1 &&form1.Data.options.feesG.fees == 1)

{

form1.Page1Subform.Space.presence = "hidden";

}

else

{

form1.Page1Subform.Space.presence = "visible";

}

When I put it in the change event of a checkbox, I receive a Runtime error and LC shuts down.

Any help would be appreciated.

thanks.

2 Replies

Avatar

Former Community Member

The only thing is the second condition should have a rawvalue on it ....also ....I would wrap the different conditions in their own brackets like this:

If ((this.rawValue == 1) && (for,m1.Data.options.feesG.fees.rawValue == 1))

Neither of those should cause a crash ...if it continues post the form and I will have a look.

paul

Avatar

Level 2

Thank you Paul.

Fixed the code and put it in the change event of a Radio Button and the form works the way I need it to.