Hi,
I am working with the latest calendar changes, using a build of a few days back. I noticed 2 things which are not working anymore it seems:
- I have the eventSnapGap at 15, meaning 15 minutes, but the event (when dragging) is snapped to the 30 minutes grid, before it worked fine.
- I use day lanes, I had to override the getCellDate method to work around an issue that clicking on a cell in the day view (with showdaylanes on true) opened the eventdialog with the wrong date (nl. the date of the weekview column, so if I clicked on the 3rd resource lane then it opens with the 3rd date from the weekview. In weekview something else went wrong, there the date is always one day off, it seems that the listGridField.masterindex is being used for determining the column, resuling in a wrong date.
This is my workaround:
I am working with the latest calendar changes, using a build of a few days back. I noticed 2 things which are not working anymore it seems:
- I have the eventSnapGap at 15, meaning 15 minutes, but the event (when dragging) is snapped to the 30 minutes grid, before it worked fine.
- I use day lanes, I had to override the getCellDate method to work around an issue that clicking on a cell in the day view (with showdaylanes on true) opened the eventdialog with the wrong date (nl. the date of the weekview column, so if I clicked on the 3rd resource lane then it opens with the 3rd date from the weekview. In weekview something else went wrong, there the date is always one day off, it seems that the listGridField.masterindex is being used for determining the column, resuling in a wrong date.
This is my workaround:
Code:
getCellDate: function(rowNum, colNum) { if (this.dayViewSelected()) { return this.dayView.getCellDate(rowNum, colNum); } else { return this.Super('getCellDate', [rowNum, colNum - 1]); } },
Comment