Hello,
I do have a problem scripting an event for my numericField - I want the numericField to hide another object if the user enters 0 in the numeric field. Unfortunately this script does not work correctly - and I do not know why and need assistance (if you can also tell me how to hide more than one object without subpages that would be wonderful, too...)
My non working script:
Formular1.superframe.administrator.NumerischesFeld4::change - (JavaScript, client)
if (this.rawValue=="0")
{
xfa.form.Formular1.superframe.administrator.compdistribdetail.presence = "invisible"
}
else
{
xfa.form.Formular1.superframe.administrator.compdistribdetail.presence = "visible"
}