Good morning! How to set a value of JavaScript function to a field of Enterprice Java Bean?
I have the js function:

<script type="text/javascript">
    function getTimezone() {
      var d = new Date()
      var gmtMinutes = -d.getTimezoneOffset();
      return gmtMinutes;
    }
</script>

I'm trying to use:

<a4j:jsFunction name="timezone" assignTo="MyBean.gmtMinutes">
       <a4j:actionparam name="timezone" value="getUserId()"/>
</a4j:jsFunction>

But I did not get. I think that I incorrectly used the tag a4j:jsFunction. Give me advice please how to use the tag correctly!

link|improve this question

50% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You can register a jsFunction which sends parameter's value to server:

        <a4j:jsFunction name="updateTimeZone">
            <a4j:param name="timezone" assignTo="#{MyBean.gmtMinutes}"/>
        </a4j:jsFunction>

And then invoke that jsFunction from JavaScript:

<script type="text/javascript">
    function sendTimezoneToServer() {
      var d = new Date()
      var gmtMinutes = -d.getTimezoneOffset();
      updateTimeZone(gmtMinutes);
    }
</script>

There is also an example of the same on RichFaces Showcase: http://richfaces-showcase.appspot.com/richfaces/component-sample.jsf?demo=jsFunction&skin=blueSky

link|improve this answer
Thank you! But what to write to "name"? Is name="timezone" correct? – Michael Sep 27 '11 at 15:07
@Andrei It does not matter in this case, name it 'timezone' or 'param1'. It is name of parameter of generated js function (like this: function updateTimeZone(timezone)). – Andrey Sep 27 '11 at 15:13
Unfortunately it does not work – Michael Sep 28 '11 at 8:45
@Andrei Can you be more constructive. What exactly is causing the problem? Did you check the example from RichFaces showcase? Just a guess: do you have a form around your jsFunction? – Andrey Sep 28 '11 at 8:52
I have found the cause, thank you. It turned out I had to just add another function call – Michael Sep 28 '11 at 14:06
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.