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 question regarding submitting form content with p:commandbutton that tends to work in the ajax way.

If I have a code like this:

<f:verbatim  rendered="#{myBean.constructor}"></f:verbatim >
 <h:form prependId="false">
          ....            
            .....
<p:commandButton   value="#{msg.Add_Parameter_Set}" update="addParameterSetPnl,msgs"  action="#{myBean.initNewParametersSet}"/>
  </h:form>

When submitting the form with the command button, will the method getContructor from f:verbatim be called (I update different parts of the form)? How can I prevent it from being called?

I thought that submitting a form, only renders the content of the form / the content that was specified by update parameter..

share|improve this question

1 Answer

up vote 0 down vote accepted

It shouldn't harm. If you're doing expensive stuff in there, then you should move that to the constructor, @PostConstruct or action method of the bean in question, or introduce lazy loading or phase sniffing.

// In Constructor..
public Bean() {
    constructed = getItSomehow();
}

// ..or @PostConstruct..
@PostConstruct
public void init() {
    constructed = getItSomehow();
}

// ..or action method..
public String submit() {
    constructed = getItSomehow();
    return "outcome";
}

// ..or lazy loading..
public boolean getConstructed() {
    if (constructed == null) constructed = getItSomehow();
    return constructed;
}

// ..or phase sniffing (this one updates during render response only).
public boolean getConstructed() {
    if (FacesContext.getCurrentInstance().getRenderResponse()) constructed = getItSomehow();
    return constructed;
}

See also

share|improve this answer
actually I saw your other answer, but thought that maybe there is a way to make called only once. – Odelya Aug 9 '10 at 12:28
No problem, you're welcome. – BalusC Aug 9 '10 at 14:35

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.