6

I'm trying to use:

<script type="text/javascript">
      function myfunc() {
         var param = 4;
         alert("OK");
      }
</script>

I call the function like this:

<a4j:jsFunction name="myfunc">
    <a4j:actionparam name="param" assignTo="#{MyBean.myfield}"/>
</a4j:jsFunction>

But it does not work. In what may be the reason?

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
Michael
  • 1,152
  • 6
  • 19
  • 36

4 Answers4

11

You misunderstood the purpose of <a4j:jsFunction>. It autogenerates a JavaScript function which you can then call from any JavaScript code in your view.

Your example,

<a4j:jsFunction name="myfunc">
    <a4j:actionparam name="param" assignTo="#{MyBean.myfield}"/>
</a4j:jsFunction>

will autogenerate the following function

<script>
    function myfunc(param) {
        // Here some specific JSF Ajax script which assigns "param"
        // to a managed bean property #{MyBean.myfield}
    }
</script>

You do not need to define it yourself. You only need to invoke it yourself from some JavaScript code elsewhere. For example,

<span onclick="myfunc(4)">click here to set 4 in MyBean.myfield</span>

or

<script>
    function someOtherFunction() {
        var param = 4;
        myfunc(param);
    }
</script>

which is in turn to be used like

<span onclick="someOtherFunction()">click here to call someOtherFunction() which will in turn set 4 in MyBean.myfield</span>

See also:

BalusC
  • 1,082,665
  • 372
  • 3,610
  • 3,555
4
<a4j:jsFunction 

is not used to call an function, it is used to define an function.

So, if MyBean.myfield is an int-field you can set the value 2 using:

<script>myfunc(2);</sript>
Grim
  • 1,938
  • 10
  • 56
  • 123
1

There's a bunch of different ways to call that function.

Two you will find particularly useful are:

This:

<body onload="myfunc();">

Example: http://ultimatemmo.webege.com/Test.html

and this:

<a href="#" onclick="myfunc();">Click here to execute function</a>

Example: http://ultimatemmo.webege.com/Test2.html

Edit: added examples.

Mark Kramer
  • 3,134
  • 7
  • 34
  • 52
0

According you snippet of code, you have never called your function. Add myfunc(); within your script tag.

Reporter
  • 3,897
  • 5
  • 33
  • 47