I am using primefaces 3.4, I have a p:calendar inside a p:overlaypanel. When I select a date the overlaypanel closes (when using Google Chrome) and when using Firefox when I click 'close' in the calendar the overlaypanel closes too.
What can I do to solve this?
My code is like this:
<p:overlayPanel for="btnOP" hideEffect="fade">
<p:panel id="panelTest">
<p:calendar id="calendarOne" pattern="dd/MM/yyyy HH:mm"
value="#{bean.value}" showOn="button" validator="dateValidator">
</p:calendar>
</p:panel>
</p:overlayPanel>