Expand my Community achievements bar.

Displaying user selection from drop down list in static text on master page

Avatar

Former Community Member

Hello,

I am using LC 7.0 at workk and I have hit a road block.

I have a drop down list at the top of the form. Once the user makes a selection, I want to take that value and paste it in static text located on the master page. I can't seem to get it to work.

Please help!!!

1 Reply

Avatar

Level 6

Hi,

Place the Drop Down list on form

Place text object(s) on master page

here is the script to display the value and/or text of drop down

Script will be on Drop Down list events

Calculate event to display value of DD - FormCalc

form1.pageSet.Page1.StaticText1.rawValue = this.rawValue;

Change event to display Text of DD - JavaScript

form1.pageSet.Page1.StaticText2.rawValue = xfa.event.newText;

SAVE the form as dynamic pdf.

Hope this will help.

Thanks,

Raghu.