Valter Silva
Valter Silva

Reputation: 16656

PlaceHolder in JSF with DatePicker?

I'm trying to find a solution for <input placeholder="text inside input field"> from HTML5 to JSF. So I found out about two solutions, one for primefaces and another for richfaces. But instead of just show the text, which gonna be check-in when clicked would show a calendar from jquery datepicker.

Something like this:

enter image description here

How can I show this calendar with the placeholder showing too ?

Upvotes: 1

Views: 1130

Answers (1)

rags
rags

Reputation: 2590

Primefaces has its own date picker.

<p:calendar id="date_checkin"> 
    <p:watermark for="date_checkin" value="Check-in" />  
</p:calendar>

<p:calendar id="date_checkout"> 
    <p:watermark for="date_checkout" value="Check-out" />  
</p:calendar>

Upvotes: 4

Related Questions