• Menu
  • Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

JavaBeat

Java Tutorial Blog

  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)
  • Java
    • Java 7
    • Java 8
    • Java EE
    • Servlets
  • Spring Framework
    • Spring Tutorials
    • Spring 4 Tutorials
    • Spring Boot
  • JSF Tutorials
  • Most Popular
    • Binary Search Tree Traversal
    • Spring Batch Tutorial
    • AngularJS + Spring MVC
    • Spring Data JPA Tutorial
    • Packaging and Deploying Node.js
  • About Us
    • Join Us (JBC)

h:selectBooleanCheckBox – Java Server Faces (JSF)

April 12, 2008 //  by Krishna Srinivasan

  • Topic : Java Server Faces (JSF)
  • Environment : J2EE 5.0, MyFaces 1.1.5

selectBooleanCheckBox.jsp

also read:

  • Introduction to JSF
  • JSF Interview Questions
  • Request Processing Lifecycle phases in JSF
<!--
   Source : www.javabeat.net
-->
<html>
    <body>
          <f:view>
              <h:form id="select">
                  <h:panelGrid columns="1">
                       <h:column>
                          <h:outputText value="Enabled : "/>
                          <h:selectBooleanCheckbox value="#{selectBooleanCheckBoxBean.isEnabled}"/>
                      </h:column>
                      <h:column>
                          <h:commandButton value="Submit" action="#{selectBooleanCheckBoxBean.submit}"/>
                      </h:column>
                  </h:panelGrid>
              </h:form>
          </f:view>
    </body>
</html>



selectBooleanCheckBoxBean.java


/**
 *  Source : www.javabeat.net
 * */
package net.javabeat.myfaces.checkbox;
public class SelectBooleanCheckBoxBean {
    private Boolean isEnabled;
    public SelectBooleanCheckBoxBean(){
        //Default Value
        this.isEnabled = true;
    }
    public Boolean getIsEnabled() {
        return isEnabled;
    }

    public void setIsEnabled(Boolean isEnabled) {
        this.isEnabled = isEnabled;
    }
    public String submit(){
        return "selectBooleanCheckBox";
    }
}

faces-config.xml


<managed-bean>
	<managed-bean-name>selectBooleanCheckBoxBean</managed-bean-name>
	<managed-bean-class>net.javabeat.myfaces.checkbox.SelectBooleanCheckBoxBean</managed-bean-class>
	<managed-bean-scope>request</managed-bean-scope>
</managed-bean>
 <navigation-case>
	<from-outcome>selectBooleanCheckBox</from-outcome>
	<to-view-id>/pages/checkbox/selectBooleanCheckBoxResult.jsp</to-view-id>
</navigation-case>

selectBooleanCheckBoxResult.jsp


<!--
   Source : www.javabeat.net
-->
<html>
    <body>
          <f:view>
              <h:form id="select">
                  <h:panelGrid columns="1">
                       <h:column>
                          <h:outputText value="Is Enabled : "/>
                          <h:outputText value="#{selectBooleanCheckBoxBean.isEnabled}"/>
                      </h:column>
                  </h:panelGrid>
              </h:form>
          </f:view>
    </body>
</html>

Category: JSFTag: JSF Tags

About Krishna Srinivasan

He is Founder and Chief Editor of JavaBeat. He has more than 8+ years of experience on developing Web applications. He writes about Spring, DOJO, JSF, Hibernate and many other emerging technologies in this blog.

Previous Post: « How to use Resource Bundle in JSF?
Next Post: h:selectManyCheckBox – Java Server Faces (JSF) »

Primary Sidebar

Follow Us

  • Facebook
  • Pinterest

FEATURED TUTORIALS

How to Use Optional.ofNullable() Method in Java

What is new in Java 6.0 Collections API?

The Java 6.0 Compiler API

Introductiion to Jakarta Struts

What’s new in Struts 2.0? – Struts 2.0 Framework

JavaBeat

Copyright © by JavaBeat · All rights reserved
Privacy Policy | Contact