Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've noticed that, in my application, the Ajax events work only the first time when using Safari (they work correctly on IE and FF). After some debugging, I've noticed that the problem is related with the onevent attribute. In my tags I've the following:

<f:ajax render="@form" onevent="loader" />

If I don't declare the loader function, the events work (but I loose the effect provided by the function), but as soon as I declare loader, even if completely empty, it only works the first time:

function loader(e) {}

At first, I thought the problem might be on the code I've on the loader method, but, like I said, it also happens with an empty body. If I remove the method, it starts working.

Any ideas on what might be causing the problem?

Kind regards,

Carlos Ferreira

share|improve this question
What JSF impl/version exactly? Tried the latest? – BalusC Mar 25 '11 at 14:46
@BalusC I'm running this on GlassFish 3.0.1, with Mojarra 2.0.2. – Carlos Ferreira Mar 25 '11 at 15:06
This is relatively old (over a year). Mojarra is currently already at 2.1. Lot of JS-related bugs have been fixed. Give it a try. I however don't guarantee that it does fix your particular problem, hence not posting it as an answer. – BalusC Mar 25 '11 at 15:12
I'm downloading v3.1 and give it a try, I'll give some feedback later. – Carlos Ferreira Mar 25 '11 at 15:16
Well, I've tried the latest version and the problem persists... :( – Carlos Ferreira Mar 25 '11 at 15:49
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.