Hey, I was intentionally leaving this one out there in Unassigned. Some
someone from the Community could Contribute. It's not an essential
enhancement.
Eddie O'Neil (JIRA) wrote:
[ http://issues.apache.org/jira/browse/BEEHIVE-355?page=history ]
Eddie O'Neil reassigned BEEHIVE-355:
------------------------------------
Assign To: Rich Feit
Add support for passing parameters to javascript functions from onPopupDone,
and popupFunc attributes of netui:configurePopup tag
---------------------------------------------------------------------------------------------------------------------------------
Key: BEEHIVE-355
URL: http://issues.apache.org/jira/browse/BEEHIVE-355
Project: Beehive
Type: Improvement
Components: NetUI
Versions: V1Beta
Reporter: Jason Dunckley
Assignee: Rich Feit
Fix For: TBD
Currently you can pass these along, and they work, but you get a javascript error. There may also be issues around the 4 implicit parameters used by popupFunc as described in bug, BEEHIVE-350
e.g.
<netui:anchor action="goNested" popup="true">
popup a nested page flow
<netui:configurePopup onPopupDone="myScript('myParam')"/>
</netui:anchor>
...
<script language="JavaScript" type="text/JavaScript">
function myScript('myParam')
{
}
</script>