Avatar

Correct answer by
Level 2

Let me add this. The scripting to show the fields lies with the radio buttons. It looks something like this:

form1.Subform1.CheckBox3::change - (FormCalc, client)

if ($.rawValue==1) then form1.Subform5.Table1.Row3.presence = "visible" else form1.Subform5.Table1.Row3.presence = "hidden" endif

Would it help if I moved the scripting to the row on the table? For example:

form1.Subform5.Table1.Row3::change - (FormCalc, client)

if (form1.Subform1.CheckBox3==1) then $.presence = "visible" else $.presence = "hidden" endif

I don't know if that would make any difference or not. Any thoughts would be greatly appreciated.

View solution in original post