Hi,
I am using one of the latest 9.1d builds. With the calendar, I noticed that with showDayLanes on true that it is not possible to drag and then drop events in the first lane.
For the other lanes it works fine, also moving an event to another lane works.
I checked the code and it seems to go wrong here in the Calendar.js:
(in the dragRepositionStop method of the eventwindow):
the colNum is zero for the first lane, the internal grid see this as a labelcol, therefore the return false is done and the drop is not executed.
gr. Martin
I am using one of the latest 9.1d builds. With the calendar, I noticed that with showDayLanes on true that it is not possible to drag and then drop events in the first lane.
For the other lanes it works fine, also moving an event to another lane works.
I checked the code and it seems to go wrong here in the Calendar.js:
(in the dragRepositionStop method of the eventwindow):
Code:
if (grid.isLabelCol(colNum) || grid.colDisabled(colNum)) return false;
gr. Martin
Comment