How make commandButton not fully refresh page? How to use f:ajax?

37,949

Make use of Ajax. It's a matter of nesting <f:ajax> inside the command button of interest.

<h:form>
    ...
    <h:commandButton ...>
        <f:ajax execute="@form" render="@none" />
    </h:commandButton>
</h:form>

Particularly the render="@none" (which is the default value anyway, you could just omit the attribute altogether) will instruct JSF to re-render just nothing after the submit. If you intend to re-render only a specific component instead of the whole page, then you could also specify the ID of that specific component in render attribute.

<h:form>
    ...
    <h:commandButton ...>
        <f:ajax execute="@form" render="result" />
    </h:commandButton>
    ...
    <h:panelGroup id="result">...</h:panelGroup>
</h:form>

If you're already using PrimeFaces, then it's a matter of simply using <p:commandButton> instead of <h:commandButton>. It uses by default ajax already, so you don't need to nest in a <f:ajax>. You only need to remember to use attribute names process and update instead of execute and render.

<h:form>
    ...
    <p:commandButton ... update="result" />
    ...
    <h:panelGroup id="result">...</h:panelGroup>
</h:form>

The execute attribute defaults to @form already, so it could be omitted.

See also:

Share:
37,949
Valter Silva
Author by

Valter Silva

Updated on March 20, 2020

Comments

  • Valter Silva
    Valter Silva about 4 years

    I have a button to submit a form and invoke a managed bean action.

    <h:form>
        ...
        <h:commandButton value="Submit" action="#{bean.submit}" />
    </h:form>
    

    But when I press the button it refreshes the whole page and sometimes also changes the URL.

    Is there some way to not refresh the page and still invoke the action?

  • eskalera
    eskalera almost 10 years
    Thanks @BalusC. I thought <h:commandButton ajax="true"> was default though. But it doesnt' work without ajax tag. Any idea why?
  • BalusC
    BalusC almost 10 years
    @eskalera: you're confusing standard JSF with PrimeFaces.