javascript - fullcalendar - disabling highlight on days during event dragging -
i drag & drop events other dates.
- my events can dropped days later today.
- 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
Post a Comment