Is it possible to use with dropdown menus or is it also dependent on the parent object implementing ActionSource as the f:setPropertyActionLister is?

Ideally I would have done something like the following:

<h:selectOneMenu value="#{myCustomBean.selectedItemIndex}">
    <f:selectItems value="#{adminLetterAdminBean.missingSettings}" var="n" itemValue="#{n.id}" itemLabel="#{n.name}"/>
    <f:setPropertyActionListener value="42" target="#{adminLetterAdminBean.someProperty}" />
    <a4j:ajax />
</rich:select>

However this does not work because h:selectOneMenu does not implement javax.faces.component.ActionSource. The page does not render and it gives me a friendly stack trace to tell me about this dependency.

Not seeing anything in the Richfaces documentation about this constraint, I tried the following:

<h:selectOneMenu value="#{myCustomBean.selectedItemIndex}">
    <f:selectItems value="#{adminLetterAdminBean.missingSettings}" var="n" itemValue="#{n.id}" itemLabel="#{n.name}"/>
    <a4j:param assignTo="#{adminLetterAdminBean.someProperty}" value="42" name="randomRequestParamName"/>
    <a4j:ajax />
</rich:select>

This does not blow up, but it also does not set the property. I was wondering if there is a set a (or multiple) properties in a similar fashion.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

a4j:param can only be nested inside an action component such as a4j:commandButon, a4j:commandLink and a4j:jsFunction. You can also use it with the standard button/link components.

link|improve this answer
Thanks for your reply. Do you know of any documentation that refers to this limitation? – jnt30 Apr 27 '11 at 23:07
No, but I asked someone from the RichFaces team ;) – Max Katz Apr 28 '11 at 0:16
That's good enough for me. Thanks for the information. My personal suggestion would be to blow up in a similar fashion as f:setPropertyActionListener did, since there is no way it will actually work, but alas I digress. Thanks again, you get the points! – jnt30 Apr 28 '11 at 0:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.