Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
PrimeFaces Beginner's Guide

You're reading from   PrimeFaces Beginner's Guide The perfect introduction to PrimeFaces, this tutorial will take you step by step through all the great features, ranging from form-creation to sophisticated navigation systems. All you need are some basic JSF and jQuery skills.

Arrow left icon
Product type Paperback
Published in Nov 2013
Publisher Packt
ISBN-13 9781783280698
Length 378 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
K. Siva Prasad Reddy K. Siva Prasad Reddy
Author Profile Icon K. Siva Prasad Reddy
K. Siva Prasad Reddy
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Preface 1. Introduction to PrimeFaces FREE CHAPTER 2. Introducing Sample Application TechBuzz 3. Using PrimeFaces Common Utility Components 4. Introducing the PrimeFaces Client Side Validation Framework 5. Introducing Text Input Components 6. Working with Selection Input Components 7. Introducing Advanced Input Components 8. Working with Data Components 9. Introducing Advanced Data Visualization Components 10. Working with Layout Components 11. Introducing Navigation Components 12. Drawing Charts 13. Using PrimeFaces Themes Index

Time for action – updating the view using AJAX

Let us create a Login Form with user name and password. When form is submitted, show the login status using AJAX. Perform the following steps for the same:

  1. Create a login.xhtml page with login form as follows:
    <h:form id="loginForm">
      <p:panel header="Login Form" style="width: 500px;">  
        <h:panelGrid columns="2">
          <p:outputLabel value="UserName"/>
          <p:inputText value="#{userController.loginUser.userName}"/>
          
          <p:outputLabel value="Password"/>
          <p:password value="#{userController.loginUser.password}"/>
          
          <p:commandButton action="#{userController.login}" value="Login" update="loginStatusMsg"/>
          <p:commandButton type="reset" value="Reset"/>
          
          <p:outputLabel value="#{userController.loginStatus}" id="loginStatusMsg"/>
        </h:panelGrid>
      </p:panel>
    </h:form>
  2. Create a UserController.java managed bean as follows:
    @ManagedBean
    @RequestScoped
    public class UserController 
    {
      private User loginUser;
      private String loginStatus;
      
      public UserController() {
        this.loginUser = new User();    
      }
    
      public User getLoginUser() {
        return loginUser;
      }
    
      public void setLoginUser(User loginUser) {
        this.loginUser = loginUser;
      }
    
      public String getLoginStatus() {
        return loginStatus;
      }
      
      public void setLoginStatus(String loginStatus) {
        this.loginStatus = loginStatus;
      }
      
      public String login() {
        boolean validCredentials = "admin".equals(loginUser.getUserName()) && "admin".equals(loginUser.getPassword());
        this.loginStatus  = validCredentials? "Login Successful" : "Login failed";
        return null;
      }    
    }
  3. Point the browser to http://localhost:8080/chapter01/login.jsf.

When you enter UserName and Password and click on the Login button, the login status should be displayed using AJAX. Have a look at the following screenshot:

Time for action – updating the view using AJAX

What just happened?

We have created a Login Form with UserName and Password fields. When we submit the form, the model gets updated and login status will be set based on the provided credentials. As we have specified to update the view component with the ID loginStatusMsg through update="loginStatusMsg", when you click on the Login button, the login status will be displayed without complete page refresh.

You have been reading a chapter from
PrimeFaces Beginner's Guide
Published in: Nov 2013
Publisher: Packt
ISBN-13: 9781783280698
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at €18.99/month. Cancel anytime