NetUI Tag Library Documentation (Version 1.0.2)

netui
netui:retrievePopupOutput Tag

Causes a value to be retrieved when a popup window closes.

Syntax

<netui:retrievePopupOutput
    dataSource="string_dataSource"
    tagIdRef="string_tagidRef" >
    ... JSP content ...
</netui:retrievePopupOutput>

Description

Causes a value to be retrieved when a popup window closes.

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

An expression to be evaluated and retrieved from the popup window.
tagIdRef
Required: Yes  |   Type: String  |   Supports runtime evaluation / JSP Expression Language: Yes

The ID of the form field to populate with a popup output.

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.RetrievePopupOutput
TagExtraInfo ClassNone
Body ContentJSP
Display NameNone