@syncfusion/ej2-gantt 22.2.10 → 22.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +46 -21
- package/dist/ej2-gantt.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +171 -59
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +170 -58
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +14 -14
- package/src/gantt/actions/context-menu.js +4 -1
- package/src/gantt/actions/critical-path.js +2 -0
- package/src/gantt/actions/dialog-edit.js +1 -1
- package/src/gantt/actions/edit.d.ts +12 -1
- package/src/gantt/actions/edit.js +76 -2
- package/src/gantt/actions/filter.js +9 -1
- package/src/gantt/actions/keyboard.js +1 -1
- package/src/gantt/base/date-processor.js +2 -2
- package/src/gantt/base/gantt.js +12 -4
- package/src/gantt/base/task-processor.js +11 -11
- package/src/gantt/export/export-helper.js +2 -1
- package/src/gantt/export/pdf-base/treegrid-layouter.js +3 -0
- package/src/gantt/export/pdf-treegrid.js +3 -0
- package/src/gantt/renderer/edit-tooltip.js +10 -7
- package/src/gantt/renderer/timeline.js +3 -0
- package/src/gantt/renderer/tooltip.js +32 -28
- package/styles/gantt/material-dark.css +1 -1
- package/styles/gantt/material.css +1 -1
- package/styles/material-dark.css +1 -1
- package/styles/material.css +1 -1
|
@@ -1536,8 +1536,8 @@ var DateProcessor = /** @__PURE__ @class */ (function () {
|
|
|
1536
1536
|
}
|
|
1537
1537
|
if (!editArgs) {
|
|
1538
1538
|
this.prevProjectStartDate = this.parent.cloneProjectStartDate;
|
|
1539
|
-
this.parent.cloneProjectStartDate = minStartDate ? minStartDate : new Date(projectStartDate.getTime());
|
|
1540
|
-
this.parent.cloneProjectEndDate = maxEndDate ? maxEndDate : new Date(projectEndDate.getTime());
|
|
1539
|
+
this.parent.cloneProjectStartDate = minStartDate ? (!this.parent.timelineModule.isZoomToFit) ? (!isNullOrUndefined(projectStartDate)) ? new Date(projectStartDate.getTime()) : minStartDate : minStartDate : new Date(projectStartDate.getTime());
|
|
1540
|
+
this.parent.cloneProjectEndDate = maxEndDate ? (!this.parent.timelineModule.isZoomToFit) ? (!isNullOrUndefined(projectEndDate)) ? new Date(projectEndDate.getTime()) : maxEndDate : maxEndDate : new Date(projectEndDate.getTime());
|
|
1541
1541
|
}
|
|
1542
1542
|
else {
|
|
1543
1543
|
setValue('minStartDate', minStartDate, editArgs);
|
|
@@ -3097,17 +3097,15 @@ var TaskProcessor = /** @__PURE__ @class */ (function (_super) {
|
|
|
3097
3097
|
else {
|
|
3098
3098
|
hierarchicalData = this.parent.dataSource;
|
|
3099
3099
|
}
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
if (
|
|
3103
|
-
|
|
3104
|
-
task[_this.parent.taskFields.endDate] = record[_this.parent.taskFields.endDate];
|
|
3105
|
-
}
|
|
3106
|
-
if (!isNullOrUndefined(_this.parent.taskFields.endDate)) {
|
|
3107
|
-
task[_this.parent.taskFields.endDate] = record[_this.parent.taskFields.endDate];
|
|
3108
|
-
}
|
|
3100
|
+
hierarchicalData.map(function (record) {
|
|
3101
|
+
if (task.ganttProperties.taskId === record[_this.parent.taskFields.id]) {
|
|
3102
|
+
if (!isNullOrUndefined(_this.parent.taskFields.startDate)) {
|
|
3103
|
+
task[_this.parent.taskFields.startDate] = record[_this.parent.taskFields.startDate];
|
|
3109
3104
|
}
|
|
3110
|
-
|
|
3105
|
+
if (!isNullOrUndefined(_this.parent.taskFields.endDate)) {
|
|
3106
|
+
task[_this.parent.taskFields.endDate] = record[_this.parent.taskFields.endDate];
|
|
3107
|
+
}
|
|
3108
|
+
}
|
|
3111
3109
|
});
|
|
3112
3110
|
};
|
|
3113
3111
|
TaskProcessor.prototype.getWorkInHour = function (work, workUnit) {
|
|
@@ -3149,7 +3147,9 @@ var TaskProcessor = /** @__PURE__ @class */ (function (_super) {
|
|
|
3149
3147
|
this.setRecordDate(ganttData, ganttProperties.endDate, dataMapping.endDate);
|
|
3150
3148
|
}
|
|
3151
3149
|
if (dataMapping.duration) {
|
|
3152
|
-
|
|
3150
|
+
if (!isNullOrUndefined(dataMapping.milestone) && !ganttData.taskData[dataMapping.milestone]) {
|
|
3151
|
+
this.setRecordDuration(ganttData, dataMapping.duration);
|
|
3152
|
+
}
|
|
3153
3153
|
}
|
|
3154
3154
|
if (dataMapping.durationUnit) {
|
|
3155
3155
|
data[dataMapping.durationUnit] = ganttProperties.durationUnit;
|
|
@@ -7380,13 +7380,16 @@ var Timeline = /** @__PURE__ @class */ (function () {
|
|
|
7380
7380
|
this.parent.updateProjectDates(args.projectStartDate, args.ProjectEndDate, args.isTimelineRoundOff, isFrom);
|
|
7381
7381
|
if (type === 'prevTimeSpan' && isFrom === 'publicMethod') {
|
|
7382
7382
|
this.parent.ganttChartModule.updateScrollLeft(0);
|
|
7383
|
+
this.parent.timelineModule.isZoomToFit = false;
|
|
7383
7384
|
}
|
|
7384
7385
|
else if (type === 'nextTimeSpan' && isFrom === 'publicMethod') {
|
|
7385
7386
|
this.parent.ganttChartModule.updateScrollLeft(this.parent.timelineModule.totalTimelineWidth);
|
|
7387
|
+
this.parent.timelineModule.isZoomToFit = false;
|
|
7386
7388
|
}
|
|
7387
7389
|
else if (type === 'nextTimeSpan' && isFrom === 'TaskbarEditing') {
|
|
7388
7390
|
var currentScrollLeft = document.getElementsByClassName('e-chart-scroll-container e-content')[0].scrollLeft;
|
|
7389
7391
|
this.parent.element.querySelector('.e-timeline-header-container').scrollLeft = currentScrollLeft;
|
|
7392
|
+
this.parent.timelineModule.isZoomToFit = false;
|
|
7390
7393
|
}
|
|
7391
7394
|
this.parent.timelineModule.timeSpanActionEvent('actionComplete', type, isFrom);
|
|
7392
7395
|
}
|
|
@@ -13484,34 +13487,38 @@ var Tooltip$1 = /** @__PURE__ @class */ (function () {
|
|
|
13484
13487
|
*/
|
|
13485
13488
|
Tooltip$$1.prototype.updateTooltipPosition = function (args) {
|
|
13486
13489
|
args.element.style.visibility = 'visible';
|
|
13487
|
-
|
|
13488
|
-
|
|
13489
|
-
|
|
13490
|
-
|
|
13491
|
-
|
|
13492
|
-
|
|
13493
|
-
|
|
13494
|
-
|
|
13495
|
-
|
|
13496
|
-
|
|
13497
|
-
|
|
13498
|
-
|
|
13499
|
-
|
|
13500
|
-
|
|
13501
|
-
|
|
13502
|
-
|
|
13503
|
-
|
|
13504
|
-
|
|
13505
|
-
|
|
13506
|
-
|
|
13507
|
-
|
|
13508
|
-
|
|
13509
|
-
|
|
13510
|
-
|
|
13511
|
-
|
|
13512
|
-
|
|
13513
|
-
|
|
13514
|
-
|
|
13490
|
+
var parentWithZoomStyle = this.parent.element.closest('[style*="zoom"]');
|
|
13491
|
+
if (isNullOrUndefined(parentWithZoomStyle)) {
|
|
13492
|
+
if (isNullOrUndefined(this.tooltipMouseEvent) || args.target.classList.contains('e-notes-info')) {
|
|
13493
|
+
return;
|
|
13494
|
+
}
|
|
13495
|
+
var postion = this.getPointorPosition(this.tooltipMouseEvent);
|
|
13496
|
+
var containerPosition = this.parent.getOffsetRect(this.parent.chartPane);
|
|
13497
|
+
var topEnd = containerPosition.top + this.parent.chartPane.offsetHeight;
|
|
13498
|
+
var leftEnd = containerPosition.left + this.parent.chartPane.offsetWidth;
|
|
13499
|
+
var tooltipPositionX = postion.x;
|
|
13500
|
+
var tooltipPositionY = postion.y;
|
|
13501
|
+
if (leftEnd < (tooltipPositionX + args.element.offsetWidth + 10)) {
|
|
13502
|
+
while (leftEnd < (tooltipPositionX + args.element.offsetWidth + 10)) {
|
|
13503
|
+
tooltipPositionX = leftEnd - args.element.offsetWidth - 10;
|
|
13504
|
+
args.element.style.left = tooltipPositionX + 'px';
|
|
13505
|
+
}
|
|
13506
|
+
}
|
|
13507
|
+
else {
|
|
13508
|
+
tooltipPositionX = tooltipPositionX + 10;
|
|
13509
|
+
args.element.style.left = tooltipPositionX + 'px';
|
|
13510
|
+
}
|
|
13511
|
+
if (window.innerHeight < args.element.offsetHeight + tooltipPositionY) {
|
|
13512
|
+
tooltipPositionY = tooltipPositionY - args.element.offsetHeight - 10;
|
|
13513
|
+
}
|
|
13514
|
+
if ((topEnd < (tooltipPositionY + args.element.offsetHeight + 20))) {
|
|
13515
|
+
tooltipPositionY = tooltipPositionY - args.element.offsetHeight - 10;
|
|
13516
|
+
}
|
|
13517
|
+
else {
|
|
13518
|
+
tooltipPositionY = tooltipPositionY + 10;
|
|
13519
|
+
}
|
|
13520
|
+
args.element.style.top = tooltipPositionY + 'px';
|
|
13521
|
+
}
|
|
13515
13522
|
};
|
|
13516
13523
|
/**
|
|
13517
13524
|
* Method to get mouse pointor position
|
|
@@ -13982,7 +13989,7 @@ var FocusModule = /** @__PURE__ @class */ (function () {
|
|
|
13982
13989
|
}
|
|
13983
13990
|
else if (isNullOrUndefined(document.getElementById(this.parent.element.id + '_dialog'))) {
|
|
13984
13991
|
e.preventDefault();
|
|
13985
|
-
ganttObj.addRecord(undefined, this.parent.editSettings.newRowPosition);
|
|
13992
|
+
ganttObj.addRecord(undefined, this.parent.editSettings.newRowPosition, this.parent.selectedRowIndex);
|
|
13986
13993
|
var focussedElement = ganttObj.element;
|
|
13987
13994
|
focussedElement.focus();
|
|
13988
13995
|
}
|
|
@@ -14896,7 +14903,9 @@ var Gantt = /** @__PURE__ @class */ (function (_super) {
|
|
|
14896
14903
|
this.wireEvents();
|
|
14897
14904
|
this.notify('initPredessorDialog', {});
|
|
14898
14905
|
}
|
|
14899
|
-
this.
|
|
14906
|
+
if (!this.isFromOnPropertyChange) {
|
|
14907
|
+
this.splitterModule.updateSplitterPosition();
|
|
14908
|
+
}
|
|
14900
14909
|
// if (this.gridLines === 'Vertical' || this.gridLines === 'Both') {
|
|
14901
14910
|
// this.renderChartVerticalLines();
|
|
14902
14911
|
// }
|
|
@@ -14908,6 +14917,8 @@ var Gantt = /** @__PURE__ @class */ (function (_super) {
|
|
|
14908
14917
|
removeClass(ganttChartElement.querySelectorAll('.e-critical-milestone'), criticalMilestone);
|
|
14909
14918
|
removeClass(this.element.querySelectorAll('.e-connector-line'), criticalConnectorLineSVG);
|
|
14910
14919
|
removeClass(this.element.querySelectorAll('.e-connector-line-arrow'), criticalConnectorArrowSVG);
|
|
14920
|
+
var innerDivs = document.querySelector('.e-gantt-child-taskbar-inner-div');
|
|
14921
|
+
innerDivs.style.outlineColor = "";
|
|
14911
14922
|
};
|
|
14912
14923
|
Gantt.prototype.wireEvents = function () {
|
|
14913
14924
|
if (this.allowKeyboard) {
|
|
@@ -15620,6 +15631,7 @@ var Gantt = /** @__PURE__ @class */ (function (_super) {
|
|
|
15620
15631
|
break;
|
|
15621
15632
|
case 'projectStartDate':
|
|
15622
15633
|
case 'projectEndDate':
|
|
15634
|
+
this.timelineModule.isZoomToFit = false;
|
|
15623
15635
|
this.dataOperation.calculateProjectDates();
|
|
15624
15636
|
this.updateProjectDates(this.cloneProjectStartDate, this.cloneProjectEndDate, this.isTimelineRoundOff);
|
|
15625
15637
|
break;
|
|
@@ -16744,8 +16756,11 @@ var Gantt = /** @__PURE__ @class */ (function (_super) {
|
|
|
16744
16756
|
}
|
|
16745
16757
|
else {
|
|
16746
16758
|
this.editModule.addRecord(data, rowPosition, rowIndex);
|
|
16759
|
+
if (rowPosition === 'Bottom') {
|
|
16760
|
+
this.selectedRowIndex = rowIndex;
|
|
16761
|
+
}
|
|
16747
16762
|
if (rowPosition === 'Above' || rowPosition === 'Below' || rowPosition === 'Child') {
|
|
16748
|
-
this.currentSelection = data;
|
|
16763
|
+
this.currentSelection = !isNullOrUndefined(data) ? data : this.currentSelection;
|
|
16749
16764
|
}
|
|
16750
16765
|
}
|
|
16751
16766
|
}
|
|
@@ -17379,8 +17394,8 @@ var Gantt = /** @__PURE__ @class */ (function (_super) {
|
|
|
17379
17394
|
if (!isNullOrUndefined(taskfields.dependency)) {
|
|
17380
17395
|
data[taskfields.dependency] = null;
|
|
17381
17396
|
}
|
|
17382
|
-
var position =
|
|
17383
|
-
this.addRecord(data, position);
|
|
17397
|
+
var position = this.editSettings.newRowPosition;
|
|
17398
|
+
this.addRecord(data, position, this.selectedRowIndex);
|
|
17384
17399
|
}
|
|
17385
17400
|
else {
|
|
17386
17401
|
if (!rowData.hasChildRecords && !rowData.ganttProperties.isMilestone) {
|
|
@@ -18552,13 +18567,16 @@ var EditTooltip = /** @__PURE__ @class */ (function () {
|
|
|
18552
18567
|
* @returns {void} .
|
|
18553
18568
|
*/
|
|
18554
18569
|
EditTooltip.prototype.updateTooltipPosition = function (args) {
|
|
18555
|
-
|
|
18556
|
-
|
|
18557
|
-
|
|
18558
|
-
|
|
18559
|
-
|
|
18560
|
-
|
|
18561
|
-
|
|
18570
|
+
var parentWithZoomStyle = this.parent.element.closest('[style*="zoom"]');
|
|
18571
|
+
if (isNullOrUndefined(parentWithZoomStyle)) {
|
|
18572
|
+
var containerPosition = this.parent.getOffsetRect(this.parent.chartPane);
|
|
18573
|
+
var leftEnd = containerPosition.left + this.parent.chartPane.offsetWidth;
|
|
18574
|
+
var tooltipPositionX = args.element.offsetLeft;
|
|
18575
|
+
if (leftEnd < (tooltipPositionX + args.element.offsetWidth)) {
|
|
18576
|
+
tooltipPositionX += leftEnd - (tooltipPositionX + args.element.offsetWidth);
|
|
18577
|
+
}
|
|
18578
|
+
args.element.style.left = tooltipPositionX + 'px';
|
|
18579
|
+
}
|
|
18562
18580
|
args.element.style.visibility = 'visible';
|
|
18563
18581
|
};
|
|
18564
18582
|
/**
|
|
@@ -23090,7 +23108,7 @@ var DialogEdit = /** @__PURE__ @class */ (function () {
|
|
|
23090
23108
|
}
|
|
23091
23109
|
}
|
|
23092
23110
|
else {
|
|
23093
|
-
this.parent.editModule.addRecord(this.addedRecord, this.parent.editSettings.newRowPosition);
|
|
23111
|
+
this.parent.editModule.addRecord(this.addedRecord, this.parent.editSettings.newRowPosition, this.parent.selectedRowIndex);
|
|
23094
23112
|
}
|
|
23095
23113
|
}
|
|
23096
23114
|
return true;
|
|
@@ -24706,6 +24724,11 @@ var Edit$2 = /** @__PURE__ @class */ (function () {
|
|
|
24706
24724
|
var ganttPropByMapping = getSwapKey(ganttObj.columnMapping);
|
|
24707
24725
|
var scheduleFieldNames = [];
|
|
24708
24726
|
var isScheduleValueUpdated = false;
|
|
24727
|
+
if (!isNullOrUndefined(ganttData[tasks.milestone])) {
|
|
24728
|
+
if (ganttData[tasks.milestone] === true) {
|
|
24729
|
+
ganttData[tasks.milestone] = false;
|
|
24730
|
+
}
|
|
24731
|
+
}
|
|
24709
24732
|
for (var _i = 0, _b = Object.keys(data); _i < _b.length; _i++) {
|
|
24710
24733
|
var key = _b[_i];
|
|
24711
24734
|
if ([tasks.startDate, tasks.endDate, tasks.duration].indexOf(key) !== -1) {
|
|
@@ -24767,6 +24790,22 @@ var Edit$2 = /** @__PURE__ @class */ (function () {
|
|
|
24767
24790
|
else if (key === tasks.cssClass) {
|
|
24768
24791
|
ganttPropKey = 'cssClass';
|
|
24769
24792
|
}
|
|
24793
|
+
else if (key === tasks.milestone) {
|
|
24794
|
+
ganttPropKey = 'isMilestone';
|
|
24795
|
+
if (!isNullOrUndefined(tasks.duration)) {
|
|
24796
|
+
var ganttProp = ganttData.ganttProperties;
|
|
24797
|
+
var durationValue = data[tasks.duration];
|
|
24798
|
+
if (value) {
|
|
24799
|
+
durationValue = 0;
|
|
24800
|
+
}
|
|
24801
|
+
else {
|
|
24802
|
+
durationValue = durationValue <= 0 ? 1 : durationValue;
|
|
24803
|
+
}
|
|
24804
|
+
ganttObj.setRecordValue(tasks.duration, durationValue, ganttData, true);
|
|
24805
|
+
ganttObj.setRecordValue('duration', durationValue, ganttProp, true);
|
|
24806
|
+
ganttObj.setRecordValue('taskData.' + tasks.duration, durationValue, ganttData);
|
|
24807
|
+
}
|
|
24808
|
+
}
|
|
24770
24809
|
else if ((key === tasks.segments) && (!isNullOrUndefined(ganttData.ganttProperties.segments))) {
|
|
24771
24810
|
ganttPropKey = 'segments';
|
|
24772
24811
|
/* eslint-disable-next-line */
|
|
@@ -27169,6 +27208,57 @@ var Edit$2 = /** @__PURE__ @class */ (function () {
|
|
|
27169
27208
|
}
|
|
27170
27209
|
}
|
|
27171
27210
|
};
|
|
27211
|
+
/**
|
|
27212
|
+
* Method to update the values to client side from server side.
|
|
27213
|
+
*
|
|
27214
|
+
* @param {Object} e - Defines the new modified data from the server.
|
|
27215
|
+
* @param {ITaskAddedEventArgs} args - Defines the client side data.
|
|
27216
|
+
* @returns {void} .
|
|
27217
|
+
*/
|
|
27218
|
+
Edit$$1.prototype.updateClientDataFromServer = function (e, args) {
|
|
27219
|
+
var serverReturnedValue = e.addedRecords[0];
|
|
27220
|
+
var _aLength = Object.keys(serverReturnedValue).length;
|
|
27221
|
+
for (var j = 0, _a = Object.keys(serverReturnedValue); j < _aLength; j++) {
|
|
27222
|
+
var key = _a[parseInt(j.toString(), 10)];
|
|
27223
|
+
args.data["" + key] = serverReturnedValue["" + key];
|
|
27224
|
+
}
|
|
27225
|
+
if (this.parent.taskFields.id !== null) {
|
|
27226
|
+
args.data.ganttProperties['taskId'] = serverReturnedValue[this.parent.taskFields.id];
|
|
27227
|
+
}
|
|
27228
|
+
if (this.parent.taskFields.name !== null) {
|
|
27229
|
+
args.data.ganttProperties['taskName'] = serverReturnedValue[this.parent.taskFields.name];
|
|
27230
|
+
}
|
|
27231
|
+
if (this.parent.taskFields.startDate !== null) {
|
|
27232
|
+
args.data.ganttProperties['startDate'] = serverReturnedValue[this.parent.taskFields.startDate];
|
|
27233
|
+
}
|
|
27234
|
+
if (this.parent.taskFields.endDate !== null) {
|
|
27235
|
+
args.data.ganttProperties['endDate'] = serverReturnedValue[this.parent.taskFields.endDate];
|
|
27236
|
+
}
|
|
27237
|
+
if (this.parent.taskFields.duration !== null) {
|
|
27238
|
+
args.data.ganttProperties['duration'] = parseInt(serverReturnedValue[this.parent.taskFields.duration]);
|
|
27239
|
+
}
|
|
27240
|
+
if (this.parent.taskFields.durationUnit !== null) {
|
|
27241
|
+
args.data.ganttProperties['durationUnit'] = serverReturnedValue[this.parent.taskFields.durationUnit];
|
|
27242
|
+
}
|
|
27243
|
+
if (this.parent.taskFields.progress !== null) {
|
|
27244
|
+
args.data.ganttProperties['progress'] = serverReturnedValue[this.parent.taskFields.progress];
|
|
27245
|
+
}
|
|
27246
|
+
if (this.parent.taskFields.dependency !== null) {
|
|
27247
|
+
args.data.ganttProperties['dependency'] = serverReturnedValue[this.parent.taskFields.dependency];
|
|
27248
|
+
}
|
|
27249
|
+
if (this.parent.taskFields.parentID !== null) {
|
|
27250
|
+
args.data.ganttProperties['parentID'] = serverReturnedValue[this.parent.taskFields.parentID];
|
|
27251
|
+
}
|
|
27252
|
+
if (this.parent.taskFields.baselineEndDate !== null) {
|
|
27253
|
+
args.data.ganttProperties['baselineEndDate'] = serverReturnedValue[this.parent.taskFields.baselineEndDate];
|
|
27254
|
+
}
|
|
27255
|
+
if (this.parent.taskFields.baselineStartDate !== null) {
|
|
27256
|
+
args.data.ganttProperties['baselineStartDate'] = serverReturnedValue[this.parent.taskFields.baselineStartDate];
|
|
27257
|
+
}
|
|
27258
|
+
if (this.parent.taskFields.resourceInfo !== null) {
|
|
27259
|
+
args.data.ganttProperties['resources'] = serverReturnedValue[this.parent.taskFields.resourceInfo];
|
|
27260
|
+
}
|
|
27261
|
+
};
|
|
27172
27262
|
/**
|
|
27173
27263
|
* Method to add new record.
|
|
27174
27264
|
*
|
|
@@ -27230,7 +27320,8 @@ var Edit$2 = /** @__PURE__ @class */ (function () {
|
|
|
27230
27320
|
/* tslint:disable-next-line */
|
|
27231
27321
|
var query = _this.parent.query instanceof Query ? _this.parent.query : new Query();
|
|
27232
27322
|
var adaptor = data_2.adaptor;
|
|
27233
|
-
|
|
27323
|
+
var moduleName = adaptor.getModuleName();
|
|
27324
|
+
if (!(moduleName == "WebApiAdaptor" || moduleName == "ODataAdaptor" || moduleName == "ODataV4Adaptor") || data_2.dataSource.batchUrl) {
|
|
27234
27325
|
/* tslint:disable-next-line */
|
|
27235
27326
|
var crud = data_2.saveChanges(updatedData_2, _this.parent.taskFields.id, null, query);
|
|
27236
27327
|
crud.then(function (e) {
|
|
@@ -27240,6 +27331,7 @@ var Edit$2 = /** @__PURE__ @class */ (function () {
|
|
|
27240
27331
|
_this.parent.setRecordValue('taskData', e.addedRecords[0], args.data);
|
|
27241
27332
|
_this.parent.setRecordValue(_this.parent.taskFields.id, e.addedRecords[0][_this.parent.taskFields.id], args.data);
|
|
27242
27333
|
_this.parent.setRecordValue('rowUniqueID', e.addedRecords[0][_this.parent.taskFields.id].toString(), args.data.ganttProperties, true);
|
|
27334
|
+
_this.updateClientDataFromServer(e, args);
|
|
27243
27335
|
var idsIndex = _this.parent.ids.indexOf(prevID_1);
|
|
27244
27336
|
if (idsIndex !== -1) {
|
|
27245
27337
|
_this.parent.ids[idsIndex] = e.addedRecords[0][_this.parent.taskFields.id].toString();
|
|
@@ -28524,8 +28616,13 @@ var Filter$1 = /** @__PURE__ @class */ (function () {
|
|
|
28524
28616
|
break;
|
|
28525
28617
|
}
|
|
28526
28618
|
if (!isNullOrUndefined(this.parent.element.parentNode)) {
|
|
28619
|
+
if (parentNode.parentNode instanceof HTMLDocument) {
|
|
28620
|
+
break;
|
|
28621
|
+
}
|
|
28527
28622
|
parentNode = parentNode.parentNode;
|
|
28528
|
-
|
|
28623
|
+
if (parentNode.parentNode && parentNode.parentNode.style) {
|
|
28624
|
+
marginTop = parentNode.parentNode.style.marginTop;
|
|
28625
|
+
}
|
|
28529
28626
|
}
|
|
28530
28627
|
parentNodeTop = parentNode.getBoundingClientRect().top;
|
|
28531
28628
|
}
|
|
@@ -28537,6 +28634,9 @@ var Filter$1 = /** @__PURE__ @class */ (function () {
|
|
|
28537
28634
|
break;
|
|
28538
28635
|
}
|
|
28539
28636
|
if (!isNullOrUndefined(this.parent.element.parentNode)) {
|
|
28637
|
+
if (parentNode.parentNode instanceof HTMLDocument) {
|
|
28638
|
+
break;
|
|
28639
|
+
}
|
|
28540
28640
|
parentNode = parentNode.parentNode;
|
|
28541
28641
|
marginLeft = parentNode.style.marginLeft;
|
|
28542
28642
|
}
|
|
@@ -30952,6 +31052,8 @@ var CriticalPath = /** @__PURE__ @class */ (function () {
|
|
|
30952
31052
|
}
|
|
30953
31053
|
if (element.getElementsByClassName('e-gantt-child-taskbar-inner-div').length > 0) {
|
|
30954
31054
|
addClass(element.querySelectorAll('.e-gantt-child-taskbar-inner-div'), criticalChildTaskBarInnerDiv);
|
|
31055
|
+
var innerDivs = document.querySelector('.e-gantt-child-taskbar-inner-div');
|
|
31056
|
+
innerDivs.style.outlineColor = "";
|
|
30955
31057
|
}
|
|
30956
31058
|
if (element.getElementsByClassName('e-gantt-child-progressbar-inner-div').length > 0) {
|
|
30957
31059
|
addClass(element.querySelectorAll('.e-gantt-child-progressbar-inner-div'), taskClass);
|
|
@@ -31177,7 +31279,7 @@ var ContextMenu$2 = /** @__PURE__ @class */ (function () {
|
|
|
31177
31279
|
taskfields = this.parent.taskFields;
|
|
31178
31280
|
if (!isNullOrUndefined(taskfields.duration)) {
|
|
31179
31281
|
var ganttProp = this.rowData.ganttProperties;
|
|
31180
|
-
data[taskfields.duration] =
|
|
31282
|
+
data[taskfields.duration] = data[taskfields.duration] <= 0 ? 1 : data[taskfields.duration];
|
|
31181
31283
|
}
|
|
31182
31284
|
else {
|
|
31183
31285
|
data[taskfields.startDate] = new Date(this.rowData.taskData[taskfields.startDate]);
|
|
@@ -31190,6 +31292,9 @@ var ContextMenu$2 = /** @__PURE__ @class */ (function () {
|
|
|
31190
31292
|
data[taskfields.milestone] = false;
|
|
31191
31293
|
}
|
|
31192
31294
|
}
|
|
31295
|
+
if (data[taskfields.startDate]) {
|
|
31296
|
+
this.parent.setRecordValue(taskfields.startDate, this.rowData.ganttProperties.startDate, data, true);
|
|
31297
|
+
}
|
|
31193
31298
|
this.parent.updateRecordByID(data);
|
|
31194
31299
|
}
|
|
31195
31300
|
break;
|
|
@@ -33736,6 +33841,9 @@ var PdfTreeGridLayouter = /** @__PURE__ @class */ (function (_super) {
|
|
|
33736
33841
|
}
|
|
33737
33842
|
}
|
|
33738
33843
|
var size = new SizeF(column.width, height);
|
|
33844
|
+
if (cell.columnSpan > 1) {
|
|
33845
|
+
size = new SizeF(cell.width, height);
|
|
33846
|
+
}
|
|
33739
33847
|
if (!this.checkIfDefaultFormat(column.format) && this.checkIfDefaultFormat(cell.style.format)) {
|
|
33740
33848
|
cell.style.format = column.format;
|
|
33741
33849
|
}
|
|
@@ -34191,12 +34299,15 @@ var PdfTreeGrid = /** @__PURE__ @class */ (function (_super) {
|
|
|
34191
34299
|
colSpan = cell.columnSpan;
|
|
34192
34300
|
currentCellIndex = j;
|
|
34193
34301
|
cell.isCellMergeStart = true;
|
|
34302
|
+
var totalColumnWidth = this.columns.columns[currentCellIndex].width;
|
|
34194
34303
|
//set Column merges.
|
|
34195
34304
|
while (colSpan > 1) {
|
|
34196
34305
|
currentCellIndex++;
|
|
34197
34306
|
row.cells.getCell(currentCellIndex).isCellMergeContinue = true;
|
|
34198
34307
|
colSpan--;
|
|
34308
|
+
totalColumnWidth += this.columns.columns[currentCellIndex].width;
|
|
34199
34309
|
}
|
|
34310
|
+
cell.width = totalColumnWidth;
|
|
34200
34311
|
}
|
|
34201
34312
|
else if (cell.columnSpan === 1 && cell.rowSpan > 1) {
|
|
34202
34313
|
rowSpan = cell.rowSpan;
|
|
@@ -35536,7 +35647,8 @@ var ExportHelper = /** @__PURE__ @class */ (function () {
|
|
|
35536
35647
|
row.height = pixelToPoint(this.parent.rowHeight);
|
|
35537
35648
|
this.copyStyles(this.ganttStyle.columnHeader, row.cells.getCell(0), row.isParentRow);
|
|
35538
35649
|
var count = this.columns.length;
|
|
35539
|
-
|
|
35650
|
+
row.cells.getCell(0).value = this.parent.localeObj.getConstant('emptyRecord');
|
|
35651
|
+
this.mergeCells(1, 0, count);
|
|
35540
35652
|
};
|
|
35541
35653
|
ExportHelper.prototype.mergeCells = function (rowIndex, colIndex, lastColIndex) {
|
|
35542
35654
|
this.gantt.rows.getRow(rowIndex).cells.getCell(colIndex).columnSpan = lastColIndex;
|