javascript - fullcalendar - disabling highlight on days during event dragging -


i drag & drop events other dates.

  1. my events can dropped days later today.
  2. my events cannot dropped dates before today.

currently when dragging event, calendar's cells below drag being highlighted. disable highlight days(cells) before today (per point #2)

any idea how disable highlight?

hi :) needed highlight cell whenever mouse on , way did this: ( kind of hacky :p ) works:

goto fullcalendar.js , go function buildtable(shownumbers), on line 2323 ( @ least in calendar, btw i´m using latest version 1.6 ) edit line:

"<div class='cellarea' >"; //this div doesnt have class put class there "cellarea"             if (shownumbers) { 

after went css , made this:

.cellarea:hover{   border-color: #cccccc !important;   cursor: pointer;    background-color: #cccccc;  } 

so point can define color want on cell hover, if define color of html body background color make invisible :). hope works let me know after try.


Comments

Popular posts from this blog

java - Jmockit String final length method mocking Issue -

asp.net - Razor Page Hosted on IIS 6 Fails Every Morning -

c++ - wxwidget compiling on windows command prompt -