<netui:retrievePopupOutput> Tag
Causes a value to be retrieved when a popup window closes.
<netui:retrievePopupOutput
dataSource="dataSource"
tagIdRef="tagIdRef" />
Causes a value to be retrieved when a popup window closes.
Attributes |
dataSource |
Required: Yes | Supports
runtime evaluation: Yes | Data bindable: No |
|
An expression to be evaluated and retrieved from the popup window. |
tagIdRef |
Required: Yes | Supports
runtime evaluation: Yes | Data bindable: No |
|
The ID of the form field to populate with a popup output. |
<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>