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

I am learning to develop web Apps using JSF 2.1 with Netbeans and Glassfish Server. Can anybody give me ideas as to how one could create a toggle button in JSF or if that is not possible an enable/disable buttons? For example I need two buttons "in" and "out" They essentially pass same param to same update function in the bean. When "in" is clicked, then "out" should be enabled and "in" immediately disabled and vice versa.How can this be done? Should I use ajax functionality?

share|improve this question

1 Answer

up vote 2 down vote accepted

Just have a boolean property which you inverse in action method and use exactly that property in the disabled attribute of the both buttons, inversed.

Kickoff example:

@ManagedBean
@ViewScoped
public class Bean {

    private boolean enabled;

    public void toggle() {
        enabled = !enabled;
    }

    public boolean isEnabled() {
        return enabled;
    }

}

With

<h:form>
    <h:commandButton value="Enable" action="#{bean.toggle}" disabled="#{bean.enabled}" />
    <h:commandButton value="Disable" action="#{bean.toggle}" disabled="#{not bean.enabled}" />
</h:form>

Ajax is technically not necessary. Feel free to add <f:ajax execute="@form" render="@form"> to both buttons to improve the user experience though.

share|improve this answer
Hi BalusC, thanks for the answer. I used it in my code where the action toggle routine is also called by a selectOneMenu (i.e the button and the menu updated values decide my operation). In this case, the toggling fails. Any idea how this can be set? – user489152 Feb 6 at 15:28
Hard to answer without seeing concrete code. Press Ask Question to ask a new question and put therein the code in SSCCE flavor. – BalusC Feb 6 at 15:29

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.