Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to send a request parameter, everytime a ValueChangeListener is invoked. I've implemented it the following way, but unfortunately it doesn't work.

Here's the code so you can get the idea.

<h:selectOneMenu value="#{MyBean.code}" 
   valueChangeListener="#{MyBean.codeChanged}" onchange="this.form.submit()">
   <f:selectItems value="#{MyBean.codeItems}" />
   <f:param name="validation" value="true" />
</h:selectOneMenu>
share|improve this question
The parameter is the selectItems value? – Michel Foucault Nov 22 '11 at 11:08
No, the parameter is the flag validation. – user321068 Nov 22 '11 at 12:09
you can try to add <f:param name="validation" value="true" /> as child of <f:selectItems > – Michel Foucault Nov 22 '11 at 12:39

1 Answer

up vote 0 down vote accepted

The <f:param> is not supported in this construct. For JSF 1.2, it's supported in <h:commandLink>, <h:outputLink> and <h:outputFormat> only. Your best bet is a <f:attribute>.

<h:selectOneMenu value="#{MyBean.code}" 
    valueChangeListener="#{MyBean.codeChanged}" onchange="this.form.submit()">
    <f:selectItems value="#{MyBean.codeItems}" />
    <f:attribute name="validation" value="true" />
</h:selectOneMenu>

with

public void codeChanged(ValueChangeEvent event) {
    UIInput menu = (UIInput) event.getComponent();
    boolean validation = Boolean.valueOf(component.getAttributes().get("validation"));
    // ...
}
share|improve this answer
Thank you. Do you have a resource where I can find out which parameter is allowed where? – user321068 Nov 22 '11 at 12:49
The JSF tag library documentation: download.oracle.com/javaee/5/javaserverfaces/1.2/docs/tlddocs Further you may find this article helpful as well to get some new general insights: balusc.blogspot.com/2006/06/communication-in-jsf.html – BalusC Nov 22 '11 at 12:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.