Expand my Community achievements bar.

July 31st AEM Gems Webinar: Elevate your AEM development to master the integration of private GitHub repositories within AEM Cloud Manager.

Adobe Livecycle Designer 8 - Drop-Down List with Multiple Options

Avatar

Former Community Member
I have a form with a drop-down list that has multiple options on it. I need to know how to allow users with Acrobat Reader 7.x or higher to be able to select more then one option from the list?



Thanks

Tim
3 Replies

Avatar

Level 5
Here is some code that you may customize to your situation



if (xfa.host.appType == "Reader") {

if (xfa.host.version > 7) {

xfa.host.messageBox("You can use some additional fields.")



}

}

Avatar

Former Community Member
SekharN,



Thanks for the code, but not being that familiar with LiveCycle Designer, where would I pout this code? Would I put in under the Binding Tab or under the Validation Tab?



Thank You,

Tim

Avatar

Level 5
Tim,

Any such code go under script editor section, in your case you may use the code under 'preOpen' event of the dropdown box. Also make sure you choose JavaScript in the event section for this code to function.



Good Luck,

SekharN