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

I have a web application in JSF. I need to add AJAX functionality to it. How can I do this?

share|improve this question
1  
What specifically are you trying to accomplish? – Brad Jun 7 '11 at 14:07

2 Answers

I'll assume that you're using JSF 1.x since JSF 2.x already ships with buitin Ajax functionality and this question would be very rhetorical then. If upgrading to JSF 2.x is indeed not an option, then you'll have to look for a 3rd party JSF 1.x component library with builtin Ajax functionality, such as RichFaces 3.x (not 4.x since it requires JSF 2.x) or PrimeFaces 1.x (not 2.x or newer since it requires JSF 2.x).

RichFaces 3.x ships with Ajax4jsf tag library (<a4j:xxx>) which supports the basic ajax functionality, starting with <a4j:support> tag. This tag is very much similiar to the JSF 2.x <f:ajax> tag.

It is not easily possible to introduce "just" a JS library such as Dojo, jQuery, etc, because you need to alter the JSF component tree state in the server side as well whenever you make changes in the HTML DOM tree in the client side. Those simple JS libraries doesn't take that into account. You would have to write a lot of additional server side code in flavor of a custom view handler. But that is exactly what among others Ajax4jsf is already doing, so you'd like to use it instead of reinventing the wheel.

If you really intend to homegrow; chapter 11 of the book JSF: The Complete Reference gives a good introduction of all things you would need to take into account. You'll see that it's not exactly that trivial.

share|improve this answer

With jsf 2.0 we have f:ajax which you can use

See Also

share|improve this answer

Your Answer

 
discard

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

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