Reputation: 69
What is the difference between a4j:commandButton
and h:commandButton
?
Upvotes: 1
Views: 697
Reputation: 1732
You can read the a4j:commandButton
documentation here
Following an extract of documentation:
a4j:commandButton is similar to the standard h:commandButton, but produces an Ajax request with a further partial page update. 'reRender' attribute points to the component(s) that should be re-rendered in the component tree and updated in the browser DOM after an Ajax Response is completed.
Upvotes: 1