Book Image

Learning PrimeFaces Extensions Development

By : Sudheer Jonna
Book Image

Learning PrimeFaces Extensions Development

By: Sudheer Jonna

Overview of this book

Table of Contents (14 chapters)
Learning PrimeFaces Extensions Development
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

JobHub in action


Let us navigate to the Professional tab under the JobSeeker's registration form and fill the available interview timings using the TimePicker components as shown in the following steps:

  1. Create an XHTML code as follows that contains the TimePicker components:

    <h:outputText value="Preferred Interview Timings-Start: " />
        <pe:timePicker value="#{employeeRegistration.jobseeker.interviewFromTime}"timeSeparator="-" startHours="9" endHours="12" startMinutes="5" endMinutes="55" intervalMinutes="5" showCloseButton="true" showDeselectButton="true" showNowButton="true" rows="2" showPeriod="true" style="width:70px;" widgetVar="customTimeWidget" label="Custom time picker" />
        <h:outputText value="End:" />
        <pe:timePicker value="#{employeeRegistration.jobseeker.interviewToTime}"
          timeSeparator="-" startHours="13" endHours="16" startMinutes="5" endMinutes="55" intervalMinutes="5" showCloseButton="true"showDeselectButton="true" showNowButton="true" rows...