<netui:configurePopup> Tag

Configures popup window parameters for parent tags that can open popup windows.

Syntax

<netui:configurePopup
    [directories="directories"]
    [height="height"]
    [left="left"]
    [location="location"]
    [menubar="menubar"]
    [name="name"]
    [onPopupDone="onPopupDone"]
    [popupFunc="popupFunc"]
    [replace="replace"]
    [resizable="resizable"]
    [scrollbars="scrollbars"]
    [status="status"]
    [toolbar="toolbar"]
    [top="top"]
    [width="width"] />

Description

Configures popup window parameters for parent tags that can open popup windows.

Attributes
directories
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether directory buttons are displayed in the popup window.
height
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

The height of the popup window.
left
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

The X coordinate of the top left corner of the popup window.
location
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the location (address) bar is visible in the popup window.
menubar
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the menu bar is displayed in the popup window.
name
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

The name of the popup window.
onPopupDone
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: No

The JavaScript function to be called when the popup window is closing.
popupFunc
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: No

The JavaScript function to be called to open the popup window.
replace
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the popup window's location will replace the location in the current window's navigation history.
resizable
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the popup window is resizable.
scrollbars
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the popup window has scroll bars.
status
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the status bar is displayed in the popup window.
toolbar
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

Whether the toolbar is visible in the popup window.
top
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

The Y coordinate of the top left corner of the popup window.
width
Required: No  |   Supports runtime evaluation: Yes  |   Data bindable: Yes

The width of the popup window.

 
Example

     <netui:anchor action="getCityZipFromNestedPageFlow" popup="true">
         Get a city and zip code
         <netui:configurePopup resizable="false" width="400" height="200">
             <netui:retrievePopupOutput tagIdRef="zipCodeField" dataSource="outputFormBean.zipCode" />
             <netui:retrievePopupOutput tagIdRef="cityField" dataSource="outputFormBean.city" />
         </netui:configurePopup>
     </netui:anchor>