I am using LiveCycle 7.0 with WindowsXP. I have a multi page form that has hidden pages, but when a radioButton is clicked, the page does become visible but the setFocus is not working. Below is the script on this field.
----- TaxSetupForm.ServiceAuthPage1.CorrespondenceAddress.AddressQuestion.Yes::enter - (JavaScript, client)
if (Fax3.rawValue == null && this.rawValue == null)
{
app.alert("Please enter the fax number.")
xfa.host.setFocus("Fax3");
}
----- TaxSetupForm.ServiceAuthPage1.CorrespondenceAddress.AddressQuestion.Yes::click - (JavaScript, client)
if (this.rawValue != null)
{
AddressChange.presence = "visible";
AddressChange.Corr_Address.rawValue = 1;
xfa.host.setFocus("AddressChange.Corr_DBA_No");
}
Thanks in advance for any help.
Ciao
Jens