How to set the year list in Primefaces' calendar component?

calendar, primefaces

Solution

for year list you can use `navigator="true"` attribute of primefaces in `p:calendar` tag and for year range `c-100:c+100` (will show the year range starting from 100 years back to 100 years forward in future.

so code will look like

<p:calendar id="someid"  yearRange="c-100:c+100" navigator="true"/>

Problem

Do exist any way to set the year list of the calendar component of primefaces?

Original source