Expand my Community achievements bar.

SOLVED

Default drop down that hides fields when entering a document

Avatar

Level 2

I am on LiveCycle Designer 8.0 and I have a script where, based on items chosen in a drop down, my fields change.  The script seems to work fine, but I want a way to set up this form so that when the form is opened by the user, they only see the initial drop down box, rather than all of the subforms.  Is there any way to do this?

1 Accepted Solution

Avatar

Correct answer by
Level 10

Hi,

You should be able to put some code in the initialize event that would hide the fields your users should not see yet.

I presume you set the the presence property to "visible" in the change event of your drop down.  So you will need to do a similar thing and set it to "hidden"

Regards

Bruce

View solution in original post

2 Replies

Avatar

Correct answer by
Level 10

Hi,

You should be able to put some code in the initialize event that would hide the fields your users should not see yet.

I presume you set the the presence property to "visible" in the change event of your drop down.  So you will need to do a similar thing and set it to "hidden"

Regards

Bruce

Avatar

Level 2

Sorry it took me so long to get back to you on this.  That worked.  Thank you.