最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Sending a callback to JSF a4j:jsFunction oncomplete event - Stack Overflow

programmeradmin1浏览0评论

I am trying to make call to JSF functions in my app more dynamic. Instead of static way of writing callback functions to onplete event by hand, I wish to send a callback function as a parameter and make it's invoke inside onplete event of the function. Here's an example:

<script type="text/javascript">
  myFunc('myParamValue', function(){
    doThis();
    andDoThis();
  });
</script>

<a4j:jsFunction name="myFunc" actionListener="#{...}" data="" onplete="">
  <f:param name="myParam" />
  <f:param name="callback" />
</a4j:jsFunction>

I wish to ask if that would be possible by using data attribute of a4j:jsFunction? Something like this:

...
data="#{myBean.callback}"
onplete="if (typeof window[event.data] == 'function') window[event.data]();"
...

I am trying to make call to JSF functions in my app more dynamic. Instead of static way of writing callback functions to onplete event by hand, I wish to send a callback function as a parameter and make it's invoke inside onplete event of the function. Here's an example:

<script type="text/javascript">
  myFunc('myParamValue', function(){
    doThis();
    andDoThis();
  });
</script>

<a4j:jsFunction name="myFunc" actionListener="#{...}" data="" onplete="">
  <f:param name="myParam" />
  <f:param name="callback" />
</a4j:jsFunction>

I wish to ask if that would be possible by using data attribute of a4j:jsFunction? Something like this:

...
data="#{myBean.callback}"
onplete="if (typeof window[event.data] == 'function') window[event.data]();"
...
Share Improve this question asked Jun 9, 2011 at 9:46 Nik SumeikoNik Sumeiko 8,7519 gold badges51 silver badges53 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 6

Try something like this:

// Page

<a4j:jsFunction name="callScript" data="#{bean.someProperty1}" 
        reRender="someComponent" 
        onplete="execute(data.callback)">

      <a4j:actionparam name="something" assignTo="#{bean.something}"/>
      <a4j:actionparam name="callback" assignTo="#{bean.callback}"/>

</a4j:jsFunction>

// JS

function testFunction() {
    alert("It works!");
}

function execute(funcName) {
    //is no namespace use window
    window[funcName]();
}

//call
callScript("param1", "testFunction");

Try this:

<a4j:jsFunction name="callScript" data=".." 
    reRender="someComponent" 
    onplete="foo(data,request)">

  <a4j:actionparam name="something" assignTo="#{bean.something}"/>
  <a4j:actionparam name="callback" />

and js

function foo(data,request) {
 var callback =request.options.parameters.callback ;
 callback(data); 
 }
发布评论

评论列表(0)

  1. 暂无评论