Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

JSF commandButton with immediate="true"

Tags:

jsf

I have a situation where there is a selectOneMenu that has a value bound to a backing bean.

I need to have a button that doesn't update model values (that is why it has immediate="true" property).

That button's action method changes the value the selectOneMenu is bound to, but when the page is redisplayed the original value is displayed (the one that was submitted) and not the one set in the action method.

Any ideas why that is happening?

If I didn't explain the problem good enough please let me know.


EDIT: As requested here is the source code in question:

page code:

<h:selectOneMenu id="selectedPerson" 
                 binding="#{bindings.selectPersonComponent}" 
                 value="#{bean.selectedPerson}">
   <s:selectItems var="op" value="#{bean.allPersons}" 
                  label="#{op.osoba.ime} #{op.osoba.prezime}" 
                  noSelectionLabel="#{messages.selectAPerson}">
   </s:selectItems>
   <f:converter converterId="unmanagedEntityConverter" />
</h:selectOneMenu>
...
<a4j:commandButton action="#{bean.createNew}" value="#{messages.createNew}"
     immediate="true" reRender="panelImovine">
</a4j:commandButton>

java code:

private Person selectedPerson;

public String createNew() {
    log.debug("New created...");
    selectedPerson = null;
    bindings.getSelectPersonComponent().setSubmittedValue(null); //SOLUTION
    return "";
}

The solution is in the lined marked SOLUTION :)

like image 300
ivans Avatar asked Mar 06 '09 14:03

ivans


People also ask

What is immediate true JSF?

With immediate="true" on the button, the action is indeed invoked during apply request values phase and all the remaining phases are skipped. That's also the sole point of this attribute: process (decode, validate, update and invoke) the component immediately during apply request values phase.

What is H commandButton?

h. Tag commandButton. Renders an HTML "input" element. Decode Behavior. Obtain the Map from the "requestParameterMap" property of the ExternalContext .


1 Answers

As it frequently happens a few moments after posting this question I have found an answer:

The cause of the problem is in detail explained here: ClearInputComponents

The problem is (as explained) that model values haven't been updated so the submitted inputs are still in component.submittedValue field and that field is displayed if not empty. It is emptied normally after model has been updated.

The first solution didn't work in my case because there is other important state in the view that mustn't get lost. But the second solution worked great:

component.setSubmittedValue(null);

And that was all that was needed: it is a little extra work because components must be bound to some bean, but not that bad.

like image 108
ivans Avatar answered Sep 22 '22 12:09

ivans