Reputation: 16656
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:
How can I show this calendar with the placeholder
showing too ?
Upvotes: 1
Views: 1130
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