I want to apply css for weekends and holidays for p:calendar. I am trying to invoke the
beforeShowDay event using jQuery and based on condition set the css.
<script>
$(document).ready(function(){
$(".hasDatepicker").datepicker("option", "beforeShowDay", function (date) {
//If condition true
return [true,'holidays'];
//else
return [true,''];
});
});
</script>
<style>
.holidays {background-color: wheat;}
</style>
<h:form prependId="false">
<p:calendar/>
</h:form>
But the event is not getting fired. Is there anything else I am missing, or any other approach?
$('.hasDatepicker').datepicker({ beforeShowDay:function(date){......}– Daniel Nov 15 '12 at 8:29