Expand my Community achievements bar.

Radically easy to access on brand approved content for distribution and omnichannel performant delivery. AEM Assets Content Hub and Dynamic Media with OpenAPI capabilities is now GA.

Very Urgent Tab Problem

Avatar

Former Community Member
Hi to All...

I Designed the PDF forms using Adobe Acrobat Live Cycle Designer 7.0.

but i am facing tab problem.

for example: if i entered in the some text boxes then if i want to go back to previous text boxes means curser will go to the some other text boxes.

and also if open in internet Explorer tab issue is more.

is there any property we need to set?

please guide me its very urgent.



thanks in Advance...

chalmal Seetaram
2 Replies

Avatar

Former Community Member
You would be best to go directly to the XML and modify the next field inside the XML directly, or





You can also control the positioning through script in the exit event of the field.

if(xfa.form.LicenseApplication.Page1.SECTION1.SAB.rawValue == "1")
{
xfa.host.setFocus("xfa.form.LicenseApplication.Page2.SECTION2.S2LNAME1");
}
else
{
xfa.host.setFocus("xfa.form.LicenseApplication.Page2.SECTION3.S3LNAME1[0]");
}

So based on the condition of the form the user would be pushed to the correct field.

Avatar

Former Community Member
Thank you Lee Sutton,

i am also using xfa.host.setfocus("txtName");

but thing is that after entering some fields, then if we want to edit means we have to go back to some previous controls.

at that time tab issue is coming.

please give some hitns and also if i am loading from browser tab issue is coming moreb than previously.



thanks...

Chalmal Seetaram