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),
Copy file name to clipboardExpand all lines: whatsnew.md
+18
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,21 @@
1
+
### 7.1.9
2
+
3
+
Fix the issue with alignment of subtasks after dragging a project in the "year" scale and switching between scales dynamically
4
+
Fix the issue which caused the duration of the project to change after dragging the project with subtasks in the "month" scale
5
+
Fix the issue with Auto Scheduling that caused the constraint type to be changed from "ASAP" to "SNET" after changing the duration of the task
6
+
Fix the incorrect work of backward scheduling after changing the start and end dates via inline editors when schedule_from_end is enabled
7
+
Now it is possible to open the lightbox for read-only tasks in the read-only mode
8
+
Now it is impossible to edit read-only tasks via the lightbox
9
+
Fix the issue with the lightbox which caused it not to open for editable tasks in the read-only mode (appeared in v6.3.1)
10
+
Fix the issue with resizing columns in grid after hiding the timeline via show_chart
11
+
Fix the issue with Auto Scheduling which couldn't be canceled after changing values of project_start and project_end
12
+
Fix the issue which caused the gantt to assign constraints to the tasks with disabled auto-scheduling
13
+
Fix the issue with defining a year range by the lightbox when the range of dates of tasks is more than 10 years and a range for the year selector isn't specified
14
+
Fix the script error that was thrown after loading Gantt if a horizontal scrollbar was attached to 3 or more vertical views
15
+
Fix the incorrect work of the onBeforeTaskAutoSchedule event after setting the ASAP constraint for the task without links when the strict mode is enabled
16
+
Fix the error occurred when running minified versions of Gantt in Next.js projects
17
+
Fix the issue which caused the width of Gantt to be changed after initializing the gantt instance inside an empty container
18
+
1
19
### 7.1.8
2
20
3
21
Fix the script error that was thrown from the gantt.groupBy method when the Resource Histogram and fit_tasks config were enabled
0 commit comments