NetUI Tag Library Documentation (Version 1.0.2)

netui
netui:configurePopup Tag

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

Syntax

<netui:configurePopup
    [directories="boolean_directories"]
    [height="integer_height"]
    [left="integer_left"]
    [location="boolean_location"]
    [menubar="boolean_menubar"]
    [name="string_name"]
    [onPopupDone="string_onPopupDone"]
    [popupFunc="string_popupFunc"]
    [replace="boolean_replace"]
    [resizable="boolean_resizable"]
    [scrollbars="boolean_scrollbars"]
    [status="boolean_status"]
    [toolbar="boolean_toolbar"]
    [top="integer_left"]
    [updateFormFields="string_updateFormFields"]
    [width="integer_width"] >
    ... JSP content ...
</netui:configurePopup>

Description

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

Attributes
directories
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether directory buttons are displayed in the popup window.
height
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The height of the popup window.
left
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The X coordinate of the top left corner of the popup window.
location
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the location (address) bar is visible in the popup window.
menubar
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the menu bar is displayed in the popup window.
name
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The name of the popup window.
onPopupDone
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The JavaScript function to be called when the popup window is closing.
popupFunc
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The JavaScript function to be called to open the popup window.
replace
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the popup window's location will replace the location in the current window's navigation history.
resizable
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the popup window is resizable.
scrollbars
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the popup window has scroll bars.
status
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the status bar is displayed in the popup window.
toolbar
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the toolbar is visible in the popup window.
top
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The Y coordinate of the top left corner of the popup window.
updateFormFields
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

Whether the data from the form fields is included in the popup window request.
width
Required: No  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: 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>


Tag Information
Tag Classorg.apache.beehive.netui.tags.html.ConfigurePopup
TagExtraInfo ClassNone
Body ContentJSP
Display NameNone