I am using a fullcalender in my portal, and I need to disable a certain cell where it will not be clickable anymore and the user can't create an event in that cell.

Plus I want to color the disabled slot with a unique color.

Please help

link|improve this question
feedback

1 Answer

I know how you can get a cell by date and change her color.

You should view this: https://github.com/arshaw/fullcalendar/pull/26

All you need to do is search the plugin for this line:

cell.find('div.fc-day-number').text(date.getDate());

And then, you should insert the line below:

cell.attr('data-date', $.fullCalendar.formatDate(date, "yyyyMMdd"));

After that, you can get a cell by date, using something similar to this:

$(".fc-widget-content[data-date='20120105']").addClass("disabled-slot");

And put the color you want on the cell.

To disable the cell, maybe you could then do something like this (not tested):

$(".fc-widget-content[data-date='20120105']").draggable({ disabled: true });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.