I am working on a calendar for PrimeFaces and I want to set the minDate as one day after today (which is tomorrow) without going into the backing bean. How do I do so on the minDate in PrimeFaces?
<p:calendar id="tomorrowDate"
value="#{calendarView.tomorrowsDate}"
mindate="#{calendarView.applicationDate} + 1"/>
Help is much appreciated. Thank you.