cancel
Showing results for 
Search instead for 
Did you mean: 

Open Pop up in Adobe Interactive From

Former Member
0 Kudos

Hi,

I have the scenario to open the pop up screen for search help in the interactive form.Can any one explain me to how to open the pop up when we clicks the button for search help.Any one help me to do this Scenario.

Thanks and Regards,

Sathesh Kumar R

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

Hi,

Thanks for your reply.But i have different scenario for my application.I have search input field where i give the search criteria and click the button.I want the pop up and i find the search criteria from that like OVS in Web Dynpro Java.

Thanks and Regards,

Sathesh Kumar R

Former Member
0 Kudos

You can do popups using JavaScript with the following code :

xfa.host.messageBox("Enter the text for the popup here");

Make sure the language for the scripting there is set to JavaScript, you can also use parameters with the popup box :

You can use + to add variables, for example, if you have a variable named u201Ctempu201D you can use :

xfa.host.messageBox(u201CThe value of temp is u201C + temp);

You can also add a title to a messageBox :

xfa.host.messageBox(u201CMessageu201D, u201CTitleu201D);

Adding two integers after the message or title will give you a messageBox that has a different icon (first integer, third parameter) or allow a return value (second integer, fourth parameter), for example for a warning:

xfa.host.messageBox(u201CMessageu201D, u201CTitleu201D, 1, 1);

Values for the message type

0 u2013 Error (Default)

1 u2013 Warning

2 u2013 Question

3 u2013 Status

Values for the return type

Buttons to display:

u2022 0 u2013 Ok (Default)

u2022 1 u2013 Ok, Cancel

u2022 2 u2013 Yes, No

u2022 3 u2013 Yes, No, Cancel

Return values:

u2022 1 u2013 Ok

u2022 2 u2013 Cancel

u2022 3 u2013 No

u2022 4 u2013 Yes