Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Javascript code to work in iOS

Guest
Apr 05, 2019 Apr 05, 2019

These will work as separate actions in IE when assigned to a Yes Checkbox, they will not work in iOS

Action1

var nShow = event.target.isBoxChecked(1)?display.hidden:display.visible;

this.getField("app.074SRG1100IssueDate").display = nHide;

this.getField("app.075SRG1100ExpiryDate").display = nHide;

Action2

var nShow = event.target.isBoxChecked(1)?display.hidden:display.visible;

this.getField("app.074SRG1100IssueDate").display = nShow;

this.getField("app.075SRG1100ExpiryDate").display = nShow;

On the No Checkbox

Action1

var nHide = event.target.isBoxChecked(1)?display.hidden:display.visible;

this.getField("app.074SRG1100IssueDate").display = nHide;

this.getField("app.075SRG1100ExpiryDate").display = nHide;

In iOS, the checkboxes work fine but not the hide/unhide element.

Help please

TOPICS
Acrobat SDK and JavaScript , Windows
343
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Apr 05, 2019 Apr 05, 2019
LATEST

Acrobat Reader for iOS does support this:

JavaScript for Acrobat Reader Mobile API Reference (iOS)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines