user321068
user321068

Reputation:

Where has a4j:support to be embedded to be working?

When I emebed a a4j:support tag inside a rich:panel tag, AJAX is working. When it's not embedded in it, AJAX it's not working.

When I emebed a a4j:support tag inside a h:panel tag, AJAX is not working. When it's embedded in a na4j:form tag, it's not working.

Is there a rule to where RichFaces tags with AJAX functionality have to be embedded to be working?

Upvotes: 3

Views: 148

Answers (1)

dcernahoschi
dcernahoschi

Reputation: 15240

a4j:support should work with any jsf component that can fire the javascript event specified in the event attribute:

<a4j:support event="specified event" .../>

Upvotes: 4

Related Questions