Details
-
Wish
-
Status: Open
-
Major
-
Resolution: Unresolved
-
None
-
None
-
None
-
n/a
Description
When using "onPopupDone" of the "netui:configurePopup" tag and the "netui:retrievePopupTag" you need to use: "Netui_OnPopupDone(map);" in the "onPopupDone" script so that the "retrievePopupTag" will map the form values appropriately (as it does when you do not use "onPopupDone"). Currently, the use of the "Netui_OnPopupDone(map);" with regard to this situation is not documented, making this process very confusing. A functional code sample below:
<script language="javascript">
<!--
function goTo(map)
{
Netui_OnPopupDone(map);
alert('Hello World!');
}
//-->
</script>
<netui:anchor formSubmit="false" action="someAction" popup="true">
<netui:configurePopup resizable="true" width="400" height="300" onPopupDone="goTo(map);">
<netui:retrievePopupOutput tagIdRef="tagid_goes_here" dataSource="outputFormBean.someData" />
</netui:configurePopup>
Testing...
</netui:anchor>