You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
html += "<option value='" + i + "'>" + i + "</option>";
@@ -23539,9 +23551,9 @@ var initializer = function () {
23539
23551
if (grid_limits[1] && gantt.config.grid_width > grid_limits[1]) gantt.config.grid_width = grid_limits[1];
23540
23552
23541
23553
if (mainTimeline && gantt.config.show_chart) {
23542
-
mainGrid.$config.width = gantt.config.grid_width - 1; // GS-1314: Don't let the non-scrollable grid to be larger than the container
23554
+
mainGrid.$config.width = gantt.config.grid_width - 1; // GS-1314: Don't let the non-scrollable grid to be larger than the container with the correct width
23543
23555
23544
-
if (!mainGrid.$config.scrollable && mainGrid.$config.scrollY) {
23556
+
if (!mainGrid.$config.scrollable && mainGrid.$config.scrollY && gantt.$root.offsetWidth) {
23545
23557
var ganttContainerWidth = mainGrid.$gantt.$layout.$container.offsetWidth;
23546
23558
var verticalScrollbar = gantt.$ui.getView(mainGrid.$config.scrollY);
23547
23559
var verticalScrollbarWidth = verticalScrollbar.$config.width;
@@ -24244,7 +24256,7 @@ var createMouseHandler = function (domHelpers) {
24244
24256
if (!default_action) return;
24245
24257
24246
24258
if (id !== null && gantt.getTask(id)) {
24247
-
if (res && gantt.config.details_on_dblclick && !gantt.isReadonly()) {
24259
+
if (res && gantt.config.details_on_dblclick && !gantt.isReadonly(id)) {
24248
24260
gantt.showLightbox(id);
24249
24261
}
24250
24262
}
@@ -29590,11 +29602,17 @@ function createTaskDND(timeline, gantt) {
29590
29602
29591
29603
return correctShift;
29592
29604
},
29593
-
_move: function _move(task, shift, drag) {
29605
+
_move: function _move(task, shift, drag, multipleDragShift) {
29594
29606
var coords_x = this._drag_task_coords(task, drag);
29595
29607
29596
-
var new_start = gantt.dateFromPos(coords_x.start + shift),
0 commit comments