laravel-fullcalendar icon indicating copy to clipboard operation
laravel-fullcalendar copied to clipboard

Disable Select with hover in Header AllDays

Open azzeddine05 opened this issue 6 years ago • 0 comments

Hello Friends I succeeded disable select in allDays using this code :

  'select' => 'function(start, end, jsEvent, view) {
   var allDay = !start.hasTime() && !end.hasTime();
   if( allDay == true)
       {
           return false;

       }

but i want also to disable select hover (unselect for header allDays ) thanks you for any help

azzeddine05 avatar Sep 19 '18 12:09 azzeddine05