netui
netui:retrievePopupOutput Tag
Causes a value to be retrieved when a popup window closes.
<netui:retrievePopupOutput
dataSource="string_dataSource"
tagIdRef="string_tagidRef" >
... JSP content ...
</netui:retrievePopupOutput>
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. |
<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 Class | org.apache.beehive.netui.tags.html.RetrievePopupOutput |
TagExtraInfo Class | None |
Body Content | JSP |
Display Name | None |