I'm looking for a Jquery calendar where I can manage events and view availability dates. I would like to use something like fullcalendar, but in a year view.
I have tried Jquery UI datepicker but can't figure out how to implement on the event.
$(function() {
$( "#datepicker" ).datepicker({
numberOfMonths: 12,
showButtonPanel: true
});
});
This image describes the functionality I need:
Can anybody suggest a nice full year calendar where I can easily manage events and view availability dates?
Thanks in advance