Search icon
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
PrimeFaces Beginner's Guide

You're reading from  PrimeFaces Beginner's Guide

Product type Book
Published in Nov 2013
Publisher Packt
ISBN-13 9781783280698
Pages 378 pages
Edition 1st Edition
Languages
Author (1):
Siva Prasad Reddy Katamreddy Siva Prasad Reddy Katamreddy
Profile icon Siva Prasad Reddy Katamreddy

Table of Contents (20) Chapters

PrimeFaces Beginner's Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Introduction to PrimeFaces Introducing Sample Application TechBuzz Using PrimeFaces Common Utility Components Introducing the PrimeFaces Client Side Validation Framework Introducing Text Input Components Working with Selection Input Components Introducing Advanced Input Components Working with Data Components Introducing Advanced Data Visualization Components Working with Layout Components Introducing Navigation Components Drawing Charts Using PrimeFaces Themes Index

Time for action – using the Spinner component


Let us see how we can use the Spinner component:

  1. Create a Spinner component to hold a double value, say price, that steps by 0.25 with the $ prefix:

    <p:spinner value="#{spinnerController.price}" prefix="$" stepFactor="0.25" />
  2. Create another Spinner component to hold a discount value with a % suffix and the discount value should be between 0 and 10:

    <p:spinner value="#{spinnerController.discount}" suffix="%" min="0" max="10" />

What just happened?

We have used the <p:spinner> component to create Spinner components with various features such as stepFactor, the min/max boundaries, and prefix/suffix.

However, even if you specify the min and max boundaries, the Spinner component will allow you to enter any value outside the boundaries directly in the text field. We can restrict entering the value in the Spinner input text field manually using the onkeydown event as follows:

<p:spinner value="#{spinnerController.discount}" suffix="%"...
lock icon The rest of the chapter is locked
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 £13.99/month. Cancel anytime}