I'm using a RichFaces commandbutton and I need it to execute two functions on click, one after the other. Right now, I have the code like so:

<a4j:commandButton  styleClass="btn-hide"
                                        onl
                                        id="btnId"  
                                        type="submit" 
                                        value="addNew"
                                        rendered="true" 
                                        reRender="panel"
                                        eventsQueue="eventQueue"    
                                        status="eventQueue" 
                                        actionListener="#{(someMethod.something)}"                                           
                                        oncomplete="javascript:something;this.disabled=false"
                                        onclick="Bean.setDesc(document.getElementById('inputArea').value);this.disable=false"
                                        ignoreDupResponses="true"
                                        immediate= "true"> 
                                          <s:conversationId></s:conversationId>
                            </a4j:commandButton>

If you look at the onclick portion, I need the Bean.setDesc to run first and then this.disabled=false. How would I go about doing this chronologically?

Thanks

link|improve this question

1  
onclick is a client side method. is Bean a javascript object or are you looking for a way to trigger an ajax request? – Dave Maple Jun 6 '11 at 20:58
Bean is not a javascript object. It's a java method. – intl Jun 6 '11 at 21:02
and is inputArea a jsf component? – Dave Maple Jun 6 '11 at 21:12
Yes, inputArea is a jsf component. – intl Jun 6 '11 at 21:18
feedback

1 Answer

up vote 1 down vote accepted

Here's a code stub to get you started. You'll want to use a4j:jsFunction if you are looking to grab values directly from the client and pass them to a server method with javascript.

<h:form id="form1" prependId="false">        

    <a4j:jsFunction 
        name="setDesc"
        action="#{exampleBean.actionMethod()}" 
        immediate="true">
        <a4j:param name="inputAreaValue" assignTo="#{exampleBean.desc}"/>
    </a4j:jsFunction>

    <h:commandButton id="button" onclick="setDesc(document.getElementById('inputArea').value); this.disabled = true;" />
</h:form>

and the managed bean:

@ManagedBean(name = "exampleBean")
@SessionScoped
public class ExampleBean implements Serializable {

    private static final long serialVersionUID = 6823632613070575039L;

    private String desc;

    public String getDesc() { return desc; }
    public void setDesc(String desc) { this.desc = desc; }

    /**
     * Action Method 
     */
    public void actionMethod() {
        // do something here
    }


}
link|improve this answer
Thanks, but could you please explain what the action="#{jsFunctionBean.actionMethod}" is? – intl Jun 6 '11 at 21:29
that can be any action method you want to invoke. In your example you had actionListener="#{(someMethod.something)}". Presumably you want to set the value of inputArea on Bean.desc and then do something else server side? If you don't want that functionality you can just remove the attribute. – Dave Maple Jun 6 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

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