@syncfusion/ej2-gantt 19.4.56 → 20.1.47-1460716
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 +1072 -1060
- package/README.md +75 -75
- package/dist/ej2-gantt.umd.min.js +1 -10
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +274 -176
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +642 -534
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +1 -10
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/dist/ts/components.ts +4 -0
- package/dist/ts/gantt/actions/actions.ts +18 -0
- package/dist/ts/gantt/actions/cell-edit.ts +606 -0
- package/dist/ts/gantt/actions/chart-scroll.ts +167 -0
- package/dist/ts/gantt/actions/column-menu.ts +35 -0
- package/dist/ts/gantt/actions/column-reorder.ts +52 -0
- package/dist/ts/gantt/actions/column-resize.ts +52 -0
- package/dist/ts/gantt/actions/connector-line-edit.ts +829 -0
- package/dist/ts/gantt/actions/context-menu.ts +754 -0
- package/dist/ts/gantt/actions/day-markers.ts +80 -0
- package/dist/ts/gantt/actions/dependency.ts +692 -0
- package/dist/ts/gantt/actions/dialog-edit.ts +2208 -0
- package/dist/ts/gantt/actions/edit.ts +3499 -0
- package/dist/ts/gantt/actions/excel-export.ts +61 -0
- package/dist/ts/gantt/actions/filter.ts +302 -0
- package/dist/ts/gantt/actions/keyboard.ts +306 -0
- package/dist/ts/gantt/actions/pdf-export.ts +214 -0
- package/dist/ts/gantt/actions/rowdragdrop.ts +839 -0
- package/dist/ts/gantt/actions/selection.ts +536 -0
- package/dist/ts/gantt/actions/sort.ts +98 -0
- package/dist/ts/gantt/actions/taskbar-edit.ts +1940 -0
- package/dist/ts/gantt/actions/toolbar.ts +489 -0
- package/dist/ts/gantt/actions/virtual-scroll.ts +60 -0
- package/dist/ts/gantt/base/common.ts +9 -0
- package/dist/ts/gantt/base/constant.ts +13 -0
- package/dist/ts/gantt/base/css-constants.ts +148 -0
- package/dist/ts/gantt/base/date-processor.ts +1257 -0
- package/dist/ts/gantt/base/enum.ts +372 -0
- package/dist/ts/gantt/base/gantt-chart.ts +1248 -0
- package/dist/ts/gantt/base/gantt.ts +4069 -0
- package/dist/ts/gantt/base/interface.ts +955 -0
- package/dist/ts/gantt/base/splitter.ts +174 -0
- package/dist/ts/gantt/base/task-processor.ts +2217 -0
- package/dist/ts/gantt/base/tree-grid.ts +694 -0
- package/dist/ts/gantt/base/utils.ts +208 -0
- package/dist/ts/gantt/export/export-helper.ts +552 -0
- package/dist/ts/gantt/export/pdf-base/dictionary.ts +152 -0
- package/dist/ts/gantt/export/pdf-base/pdf-borders.ts +277 -0
- package/dist/ts/gantt/export/pdf-base/pdf-grid-table.ts +901 -0
- package/dist/ts/gantt/export/pdf-base/pdf-style/gantt-theme.ts +131 -0
- package/dist/ts/gantt/export/pdf-base/pdf-style/style.ts +91 -0
- package/dist/ts/gantt/export/pdf-base/treegrid-layouter.ts +414 -0
- package/dist/ts/gantt/export/pdf-connector-line.ts +422 -0
- package/dist/ts/gantt/export/pdf-gantt.ts +282 -0
- package/dist/ts/gantt/export/pdf-taskbar.ts +395 -0
- package/dist/ts/gantt/export/pdf-timeline.ts +202 -0
- package/dist/ts/gantt/export/pdf-treegrid.ts +406 -0
- package/dist/ts/gantt/models/add-dialog-field-settings.ts +33 -0
- package/dist/ts/gantt/models/column.ts +464 -0
- package/dist/ts/gantt/models/day-working-time.ts +22 -0
- package/dist/ts/gantt/models/edit-dialog-field-settings.ts +33 -0
- package/dist/ts/gantt/models/edit-settings.ts +79 -0
- package/dist/ts/gantt/models/event-marker.ts +27 -0
- package/dist/ts/gantt/models/filter-settings.ts +53 -0
- package/dist/ts/gantt/models/holiday.ts +34 -0
- package/dist/ts/gantt/models/label-settings.ts +30 -0
- package/dist/ts/gantt/models/models.ts +36 -0
- package/dist/ts/gantt/models/resource-fields.ts +38 -0
- package/dist/ts/gantt/models/search-settings.ts +77 -0
- package/dist/ts/gantt/models/selection-settings.ts +56 -0
- package/dist/ts/gantt/models/sort-settings.ts +50 -0
- package/dist/ts/gantt/models/splitter-settings.ts +47 -0
- package/dist/ts/gantt/models/task-fields.ts +171 -0
- package/dist/ts/gantt/models/timeline-settings.ts +112 -0
- package/dist/ts/gantt/models/tooltip-settings.ts +46 -0
- package/dist/ts/gantt/renderer/chart-rows.ts +1838 -0
- package/dist/ts/gantt/renderer/connector-line.ts +1025 -0
- package/dist/ts/gantt/renderer/edit-tooltip.ts +228 -0
- package/dist/ts/gantt/renderer/event-marker.ts +96 -0
- package/dist/ts/gantt/renderer/nonworking-day.ts +205 -0
- package/dist/ts/gantt/renderer/render.ts +5 -0
- package/dist/ts/gantt/renderer/timeline.ts +1397 -0
- package/dist/ts/gantt/renderer/tooltip.ts +450 -0
- package/dist/ts/gantt/renderer/virtual-content-render.ts +50 -0
- package/license +9 -9
- package/package.json +80 -80
- package/src/gantt/actions/cell-edit.js +2 -1
- package/src/gantt/actions/dialog-edit.js +2 -1
- package/src/gantt/actions/edit.js +11 -2
- package/src/gantt/actions/rowdragdrop.js +37 -15
- package/src/gantt/actions/taskbar-edit.js +24 -24
- package/src/gantt/base/date-processor.js +0 -1
- package/src/gantt/base/gantt-chart.js +9 -4
- package/src/gantt/base/gantt-model.d.ts +779 -779
- package/src/gantt/base/gantt.d.ts +27 -27
- package/src/gantt/base/gantt.js +22 -22
- package/src/gantt/base/splitter.js +1 -0
- package/src/gantt/base/task-processor.js +13 -13
- package/src/gantt/base/tree-grid.js +3 -1
- package/src/gantt/export/pdf-base/treegrid-layouter.js +13 -13
- package/src/gantt/export/pdf-connector-line.js +11 -11
- package/src/gantt/export/pdf-gantt.js +24 -24
- package/src/gantt/export/pdf-taskbar.js +11 -11
- package/src/gantt/export/pdf-treegrid.js +13 -13
- package/src/gantt/models/add-dialog-field-settings-model.d.ts +21 -21
- package/src/gantt/models/add-dialog-field-settings.js +19 -19
- package/src/gantt/models/day-working-time-model.d.ts +11 -11
- package/src/gantt/models/day-working-time.js +19 -19
- package/src/gantt/models/edit-dialog-field-settings-model.d.ts +21 -21
- package/src/gantt/models/edit-dialog-field-settings.js +19 -19
- package/src/gantt/models/edit-settings-model.d.ts +50 -50
- package/src/gantt/models/edit-settings.js +19 -19
- package/src/gantt/models/event-marker-model.d.ts +16 -16
- package/src/gantt/models/event-marker.js +19 -19
- package/src/gantt/models/filter-settings-model.d.ts +34 -34
- package/src/gantt/models/filter-settings.js +19 -19
- package/src/gantt/models/holiday-model.d.ts +21 -21
- package/src/gantt/models/holiday.js +19 -19
- package/src/gantt/models/label-settings-model.d.ts +16 -16
- package/src/gantt/models/label-settings.js +19 -19
- package/src/gantt/models/resource-fields-model.d.ts +21 -21
- package/src/gantt/models/resource-fields.js +19 -19
- package/src/gantt/models/search-settings-model.d.ts +56 -56
- package/src/gantt/models/search-settings.js +19 -19
- package/src/gantt/models/selection-settings-model.d.ts +35 -35
- package/src/gantt/models/selection-settings.js +19 -19
- package/src/gantt/models/sort-settings-model.d.ts +24 -24
- package/src/gantt/models/sort-settings.js +19 -19
- package/src/gantt/models/splitter-settings-model.d.ts +30 -30
- package/src/gantt/models/splitter-settings.js +19 -19
- package/src/gantt/models/task-fields-model.d.ts +110 -110
- package/src/gantt/models/task-fields.js +19 -19
- package/src/gantt/models/timeline-settings-model.d.ts +71 -71
- package/src/gantt/models/timeline-settings.js +19 -19
- package/src/gantt/models/tooltip-settings-model.d.ts +26 -26
- package/src/gantt/models/tooltip-settings.js +19 -19
- package/src/gantt/renderer/chart-rows.js +49 -37
- package/src/gantt/renderer/connector-line.js +22 -18
- package/src/gantt/renderer/event-marker.js +1 -0
- package/src/gantt/renderer/nonworking-day.js +13 -6
- package/src/gantt/renderer/timeline.d.ts +1 -0
- package/src/gantt/renderer/timeline.js +48 -12
- package/src/gantt/renderer/tooltip.js +11 -3
- package/styles/bootstrap-dark.css +442 -427
- package/styles/bootstrap.css +442 -433
- package/styles/bootstrap4.css +454 -479
- package/styles/bootstrap5-dark.css +457 -433
- package/styles/bootstrap5.css +457 -433
- package/styles/fabric-dark.css +438 -421
- package/styles/fabric.css +445 -428
- package/styles/fluent-dark.css +1938 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +1938 -0
- package/styles/fluent.scss +1 -0
- package/styles/gantt/_all.scss +2 -2
- package/styles/gantt/_bootstrap-dark-definition.scss +210 -156
- package/styles/gantt/_bootstrap-definition.scss +211 -157
- package/styles/gantt/_bootstrap4-definition.scss +213 -158
- package/styles/gantt/_bootstrap5-definition.scss +215 -162
- package/styles/gantt/_fabric-dark-definition.scss +211 -157
- package/styles/gantt/_fabric-definition.scss +211 -157
- package/styles/gantt/_fluent-dark-definition.scss +1 -0
- package/styles/gantt/_fluent-definition.scss +215 -162
- package/styles/gantt/_fusionnew-definition.scss +214 -0
- package/styles/gantt/_highcontrast-definition.scss +211 -157
- package/styles/gantt/_highcontrast-light-definition.scss +211 -157
- package/styles/gantt/_layout.scss +1446 -1027
- package/styles/gantt/_material-dark-definition.scss +212 -157
- package/styles/gantt/_material-definition.scss +212 -157
- package/styles/gantt/_material3-definition.scss +215 -0
- package/styles/gantt/_tailwind-definition.scss +215 -161
- package/styles/gantt/_theme.scss +702 -668
- package/styles/gantt/bootstrap-dark.css +442 -427
- package/styles/gantt/bootstrap.css +442 -433
- package/styles/gantt/bootstrap4.css +454 -479
- package/styles/gantt/bootstrap5-dark.css +457 -433
- package/styles/gantt/bootstrap5.css +457 -433
- package/styles/gantt/fabric-dark.css +438 -421
- package/styles/gantt/fabric.css +445 -428
- package/styles/gantt/fluent-dark.css +1938 -0
- package/styles/gantt/fluent-dark.scss +22 -0
- package/styles/gantt/fluent.css +1938 -0
- package/styles/gantt/fluent.scss +22 -0
- package/styles/gantt/highcontrast-light.css +405 -405
- package/styles/gantt/highcontrast.css +444 -456
- package/styles/gantt/icons/_bootstrap-dark.scss +124 -113
- package/styles/gantt/icons/_bootstrap.scss +124 -113
- package/styles/gantt/icons/_bootstrap4.scss +124 -113
- package/styles/gantt/icons/_bootstrap5.scss +124 -112
- package/styles/gantt/icons/_fabric-dark.scss +124 -112
- package/styles/gantt/icons/_fabric.scss +124 -112
- package/styles/gantt/icons/_fluent-dark.scss +1 -0
- package/styles/gantt/icons/_fluent.scss +124 -112
- package/styles/gantt/icons/_fusionnew.scss +120 -0
- package/styles/gantt/icons/_highcontrast.scss +124 -112
- package/styles/gantt/icons/_material-dark.scss +124 -112
- package/styles/gantt/icons/_material.scss +124 -112
- package/styles/gantt/icons/_material3.scss +124 -0
- package/styles/gantt/icons/_tailwind-dark.scss +124 -113
- package/styles/gantt/icons/_tailwind.scss +124 -113
- package/styles/gantt/material-dark.css +446 -417
- package/styles/gantt/material.css +445 -419
- package/styles/gantt/tailwind-dark.css +452 -482
- package/styles/gantt/tailwind.css +449 -479
- package/styles/highcontrast-light.css +405 -405
- package/styles/highcontrast.css +444 -456
- package/styles/material-dark.css +446 -417
- package/styles/material.css +445 -419
- package/styles/tailwind-dark.css +452 -482
- package/styles/tailwind.css +449 -479
package/CHANGELOG.md
CHANGED
|
@@ -1,1060 +1,1072 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## [Unreleased]
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
- `#
|
|
12
|
-
- `#
|
|
13
|
-
- `#
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
- `#
|
|
24
|
-
- `#
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
- `#
|
|
62
|
-
- `#
|
|
63
|
-
|
|
64
|
-
## 19.4.
|
|
65
|
-
|
|
66
|
-
### Gantt
|
|
67
|
-
|
|
68
|
-
#### Bug Fixes
|
|
69
|
-
|
|
70
|
-
- `#
|
|
71
|
-
- `#
|
|
72
|
-
- `#
|
|
73
|
-
- `#
|
|
74
|
-
- `#
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
- `#
|
|
85
|
-
- `#
|
|
86
|
-
- `#
|
|
87
|
-
- `#
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
- `#
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
- `#
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
- `#
|
|
181
|
-
- `#
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
- `#
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
- `#
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
- `
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
-
|
|
322
|
-
- `#
|
|
323
|
-
- `#
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
- `#
|
|
333
|
-
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
- `#
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
- `
|
|
360
|
-
- `
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
-
|
|
406
|
-
|
|
407
|
-
## 18.4.
|
|
408
|
-
|
|
409
|
-
### Gantt
|
|
410
|
-
|
|
411
|
-
####
|
|
412
|
-
|
|
413
|
-
- `
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
-
|
|
451
|
-
|
|
452
|
-
## 18.4.
|
|
453
|
-
|
|
454
|
-
### Gantt
|
|
455
|
-
|
|
456
|
-
####
|
|
457
|
-
|
|
458
|
-
- `#
|
|
459
|
-
|
|
460
|
-
####
|
|
461
|
-
|
|
462
|
-
- `
|
|
463
|
-
|
|
464
|
-
## 18.4.
|
|
465
|
-
|
|
466
|
-
### Gantt
|
|
467
|
-
|
|
468
|
-
####
|
|
469
|
-
|
|
470
|
-
- `
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
-
|
|
500
|
-
- `#
|
|
501
|
-
- `#
|
|
502
|
-
|
|
503
|
-
## 18.4.
|
|
504
|
-
|
|
505
|
-
### Gantt
|
|
506
|
-
|
|
507
|
-
####
|
|
508
|
-
|
|
509
|
-
- `#
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
- `#
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
- `
|
|
552
|
-
- `
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
- `
|
|
578
|
-
- `#
|
|
579
|
-
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
#### Bug Fixes
|
|
598
|
-
|
|
599
|
-
- `#
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
- `#
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
- `#
|
|
676
|
-
-
|
|
677
|
-
|
|
678
|
-
## 18.2.
|
|
679
|
-
|
|
680
|
-
### Gantt
|
|
681
|
-
|
|
682
|
-
####
|
|
683
|
-
|
|
684
|
-
- `#
|
|
685
|
-
-
|
|
686
|
-
- `#
|
|
687
|
-
- `#
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
- `#
|
|
697
|
-
- `#
|
|
698
|
-
- `#
|
|
699
|
-
- `#
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
- `#
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
- `#
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
####
|
|
758
|
-
|
|
759
|
-
- `#
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
-
|
|
815
|
-
|
|
816
|
-
## 18.1.
|
|
817
|
-
|
|
818
|
-
### Gantt
|
|
819
|
-
|
|
820
|
-
####
|
|
821
|
-
|
|
822
|
-
- `#
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
- `
|
|
835
|
-
- `#
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
####
|
|
890
|
-
|
|
891
|
-
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
- `
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
- `
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
####
|
|
1004
|
-
|
|
1005
|
-
-
|
|
1006
|
-
|
|
1007
|
-
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
####
|
|
1026
|
-
|
|
1027
|
-
- #
|
|
1028
|
-
|
|
1029
|
-
## 17.1.
|
|
1030
|
-
|
|
1031
|
-
### Gantt
|
|
1032
|
-
|
|
1033
|
-
#### Bug Fixes
|
|
1034
|
-
|
|
1035
|
-
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
-
|
|
1056
|
-
|
|
1057
|
-
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## [Unreleased]
|
|
4
|
+
|
|
5
|
+
## 20.1.47 (2022-04-04)
|
|
6
|
+
|
|
7
|
+
### Gantt
|
|
8
|
+
|
|
9
|
+
#### Bug Fixes
|
|
10
|
+
|
|
11
|
+
- `#300959` - Provided support to fill empty space with extended timeline in zoom out action.
|
|
12
|
+
- `#371372` - Unable to change end Date of manual parent task issue has been fixed.
|
|
13
|
+
- `#363003` - Child mapping order not maintained in data source property issue has been fixed.
|
|
14
|
+
|
|
15
|
+
## 19.4.56 (2022-03-15)
|
|
16
|
+
|
|
17
|
+
### Gantt
|
|
18
|
+
|
|
19
|
+
#### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- `#369264` - Event marker labels not visible when there is single record has been fixed
|
|
22
|
+
- `#362146` - Row customization using `rowDataBound` event in `enableImmutableMode` issue has been fixed
|
|
23
|
+
- `#363336` - Child records not updated properly in specific index issue has been fixed.
|
|
24
|
+
- `#368609` - Indent and outdent toolbar item not showing when checkbox selection is enabled has been fixed.
|
|
25
|
+
- `#363752` - Issue in assigning custom zooming levels in `load` event has been fixed.
|
|
26
|
+
- `#368549` - Gantt chart indentation issue while adding a child task has been fixed.
|
|
27
|
+
- `#359455` - Issue in giving height as view port for parent container has been fixed.
|
|
28
|
+
|
|
29
|
+
## 19.4.55 (2022-03-08)
|
|
30
|
+
|
|
31
|
+
### Gantt
|
|
32
|
+
|
|
33
|
+
#### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- `#366304` - Gantt line mismatches when we set system display as 100% and browser zoom settings as 90% has been fixed.
|
|
36
|
+
- `#365994` - Right and left label template not working in `vue` has been fixed.
|
|
37
|
+
|
|
38
|
+
## 19.4.54 (2022-03-01)
|
|
39
|
+
|
|
40
|
+
### Gantt
|
|
41
|
+
|
|
42
|
+
#### Bug Fixes
|
|
43
|
+
|
|
44
|
+
- `#366296` - When moving from once cell to another cell using tab key navigation issue has been fixed.
|
|
45
|
+
- `#363358`,`F172781` - Drag and drop not working properly after row gets collapsed issue has been fixed.
|
|
46
|
+
|
|
47
|
+
## 19.4.53 (2022-02-22)
|
|
48
|
+
|
|
49
|
+
### Gantt
|
|
50
|
+
|
|
51
|
+
#### Bug Fixes
|
|
52
|
+
|
|
53
|
+
- `#365463` - Gantt timeline view gets changed when resize the task to left side has been fixed.
|
|
54
|
+
|
|
55
|
+
## 19.4.52 (2022-02-15)
|
|
56
|
+
|
|
57
|
+
### Gantt
|
|
58
|
+
|
|
59
|
+
#### Bug Fixes
|
|
60
|
+
|
|
61
|
+
- `#360085` - Issue in deleting a task after performing expand collapse action for multiple times has been fixed.
|
|
62
|
+
- `#364950` - The `taskLabel` property does not show the task name properly when giving name with space has been fixed.
|
|
63
|
+
|
|
64
|
+
## 19.4.50 (2022-02-08)
|
|
65
|
+
|
|
66
|
+
### Gantt
|
|
67
|
+
|
|
68
|
+
#### Bug Fixes
|
|
69
|
+
|
|
70
|
+
- `#362011` - Date alignment issue with Gantt Zoom to fit top tier and bottom tier has been fixed.
|
|
71
|
+
- `#364643` - Extra fields are added in `dataSource` property for bottom position issue has been fixed.
|
|
72
|
+
- `#363210` - Issue in performing edit dialog when we map only segments tab in `editDialogFields` has been fixed.
|
|
73
|
+
- `#364723` - Issue in updating `dataSource` property using insert key has been fixed.
|
|
74
|
+
- `#364643` - New record added in the top of datasource when row position is set as Bottom has been fixed.
|
|
75
|
+
|
|
76
|
+
## 19.4.47 (2022-01-25)
|
|
77
|
+
|
|
78
|
+
### Gantt
|
|
79
|
+
|
|
80
|
+
#### Bug Fixes
|
|
81
|
+
|
|
82
|
+
- `#356978` - Issue in disable the initial move of taskbar drag has been fixed.
|
|
83
|
+
- `#357647` - Issue in enabling scroll top during load time has been fixed.
|
|
84
|
+
- `#360893` - Issue in data source not updating when dragging and dropping child record has been fixed.
|
|
85
|
+
- `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
|
|
86
|
+
- `#361492` - Dragged row does not disappear when the row dropped outside the Gantt issue has been fixed.
|
|
87
|
+
- `#360381` - Issue in clicking on date picker while filtering has been fixed.
|
|
88
|
+
- `#362566` - Child records do not indent properly when immutable mode is enabled issue has been fixed
|
|
89
|
+
|
|
90
|
+
## 19.4.43 (2022-01-18)
|
|
91
|
+
|
|
92
|
+
### Gantt
|
|
93
|
+
|
|
94
|
+
#### Bug Fixes
|
|
95
|
+
|
|
96
|
+
- `#359455` - Issue in rendering Gantt when parent container height is set in percentage has been fixed.
|
|
97
|
+
- `#360424` - Issue in performing drag and drop when resource is set to null has been fixed.
|
|
98
|
+
- `#360085` - Issue in adding new record after performing expand collapse action for multiple times has been fixed.
|
|
99
|
+
- `#360081` - Console error thrown when we assign resources to parent tasks has been fixed.
|
|
100
|
+
|
|
101
|
+
## 19.4.42 (2022-01-11)
|
|
102
|
+
|
|
103
|
+
### Gantt
|
|
104
|
+
|
|
105
|
+
#### Bug Fixes
|
|
106
|
+
|
|
107
|
+
- `#354721` - Issue in rendering milestone based on the milestone mapping in datasource has been fixed.
|
|
108
|
+
- `#358683` - Toolbar gets hide after `expandAll` and `collapseAll` is performed issue has been fixed.
|
|
109
|
+
|
|
110
|
+
## 19.4.41 (2022-01-04)
|
|
111
|
+
|
|
112
|
+
### Gantt
|
|
113
|
+
|
|
114
|
+
#### Bug Fixes
|
|
115
|
+
|
|
116
|
+
- `#359120` - Issue with Gantt Context menu operation after release the connector line outside the Gantt.
|
|
117
|
+
- `#359104, #359163` - Issue while Gantt loaded with taskbar Template and `queryTaskbarInfo` for segmented Tasks has been fixed.
|
|
118
|
+
- `#F170631` - Issue in search settings for all hierarchy mode in Gantt has been fixed.
|
|
119
|
+
|
|
120
|
+
### Gantt
|
|
121
|
+
|
|
122
|
+
#### Bug Fixes
|
|
123
|
+
|
|
124
|
+
- `#355824, #360027` - Gantt Chart display issue with misalign in dates on which DST change happens has been fixed.
|
|
125
|
+
- `#F171256` - Issue in Localization for the word New Task has been fixed.
|
|
126
|
+
|
|
127
|
+
## 19.4.40 (2021-12-28)
|
|
128
|
+
|
|
129
|
+
### Gantt
|
|
130
|
+
|
|
131
|
+
#### Bug Fixes
|
|
132
|
+
|
|
133
|
+
- `#357340` - Issue with Gantt `selectedRowIndex` property when deleted the selected item in last row.
|
|
134
|
+
|
|
135
|
+
## 19.4.38 (2021-12-17)
|
|
136
|
+
|
|
137
|
+
### Gantt
|
|
138
|
+
|
|
139
|
+
#### Bug Fixes
|
|
140
|
+
|
|
141
|
+
- `#346141` - Issue with Gantt manipulates and change task data date values from original data has been fixed.
|
|
142
|
+
- `#F170644` - Issue in manual start date while mapping multiple parent levels has been fixed.
|
|
143
|
+
- `#F170274` - DateTimePicker is not rendering in dialog segment tab start date and end date columns has been fixed.
|
|
144
|
+
|
|
145
|
+
#### Breaking Changes
|
|
146
|
+
|
|
147
|
+
- Original user datasource is maintained in `taskData` and `dataSource` properties in Gantt during load time. It will update only after CRUD operation.
|
|
148
|
+
|
|
149
|
+
## 19.3.56 (2021-12-02)
|
|
150
|
+
|
|
151
|
+
### Gantt
|
|
152
|
+
|
|
153
|
+
#### Bug Fixes
|
|
154
|
+
|
|
155
|
+
- `#347613` - Connector line issue after updating the datasource dynamically has been fixed.
|
|
156
|
+
- `#346909` - Issue in disable custom context menu has been fixed.
|
|
157
|
+
|
|
158
|
+
## 19.3.55 (2021-11-23)
|
|
159
|
+
|
|
160
|
+
### Gantt
|
|
161
|
+
|
|
162
|
+
#### Bug Fixes
|
|
163
|
+
|
|
164
|
+
- `#347753` - Issue in `defaultedit` edit type has been fixed.
|
|
165
|
+
|
|
166
|
+
## 19.3.53 (2021-11-12)
|
|
167
|
+
|
|
168
|
+
### Gantt
|
|
169
|
+
|
|
170
|
+
#### Bug Fixes
|
|
171
|
+
|
|
172
|
+
- `#342557` - In fixed work type duration update issue has been fixed.
|
|
173
|
+
|
|
174
|
+
## 19.3.48 (2021-11-02)
|
|
175
|
+
|
|
176
|
+
### Gantt
|
|
177
|
+
|
|
178
|
+
#### Bug Fixes
|
|
179
|
+
|
|
180
|
+
- `#343417` - Issue in updating row index after row drag and drop has been fixed.
|
|
181
|
+
- `#346516` - Issue in context menu after cell editing has been fixed.
|
|
182
|
+
- `#346736` - Issue in rendering connector points when progress field is not mapped has been fixed.
|
|
183
|
+
|
|
184
|
+
## 19.3.47 (2021-10-26)
|
|
185
|
+
|
|
186
|
+
### Gantt
|
|
187
|
+
|
|
188
|
+
#### Bug Fixes
|
|
189
|
+
|
|
190
|
+
- `#343991` - Additional parameters are not passed to `BatchUpdate` method when deleting the row issue has been fixed.
|
|
191
|
+
- `#344100` - Issue in cancelling the drawing of predecessor line in `actionBegin` event has been fixed.
|
|
192
|
+
- `#345841` - Issue on taskbar editing when timezone property set as `UTC` has been fixed.
|
|
193
|
+
- `#341691` - Bring back browser default context menu in dialog editing has been fixed.
|
|
194
|
+
|
|
195
|
+
#### Breaking Changes
|
|
196
|
+
|
|
197
|
+
- Add and Edit dialog is now rendered as direct child to *body* element.
|
|
198
|
+
|
|
199
|
+
## 19.3.46 (2021-10-19)
|
|
200
|
+
|
|
201
|
+
### Gantt
|
|
202
|
+
|
|
203
|
+
#### Bug Fixes
|
|
204
|
+
|
|
205
|
+
- `#343417` - Issue in CRUD operations when using datamanager data has been fixed.
|
|
206
|
+
- `#340739` - Vertical grid line issue while changing height dynamically has been fixed.
|
|
207
|
+
- `#F168970` - Issue in updating Segments data issue has been fixed.
|
|
208
|
+
|
|
209
|
+
## 19.3.45 (2021-10-12)
|
|
210
|
+
|
|
211
|
+
### Gantt
|
|
212
|
+
|
|
213
|
+
#### Bug Fixes
|
|
214
|
+
|
|
215
|
+
- `#342557` - In fixed work type duration update issue has been fixed.
|
|
216
|
+
- `#340406` - Misalignment while using line height property issue has been fixed.
|
|
217
|
+
- `#310346` - Pdf export issue while changing date format has been fixed.
|
|
218
|
+
|
|
219
|
+
## 19.3.44 (2021-10-05)
|
|
220
|
+
|
|
221
|
+
### Gantt
|
|
222
|
+
|
|
223
|
+
#### New Features
|
|
224
|
+
|
|
225
|
+
- `#304621, #322659` - Provided percentage support for height and width of Gantt element.
|
|
226
|
+
|
|
227
|
+
## 19.2.62 (2021-09-14)
|
|
228
|
+
|
|
229
|
+
### Gantt
|
|
230
|
+
|
|
231
|
+
#### Bug Fixes
|
|
232
|
+
|
|
233
|
+
- `#340421` - In smaller resolution the splitter appeared in wrong position issue has been fixed.
|
|
234
|
+
- `#341502` - Indicators disappear when datasource changed dynamically issue has been fixed.
|
|
235
|
+
|
|
236
|
+
## 19.2.60 (2021-09-07)
|
|
237
|
+
|
|
238
|
+
### Gantt
|
|
239
|
+
|
|
240
|
+
#### Bug Fixes
|
|
241
|
+
|
|
242
|
+
- `#340155` - Dialog closes when pressing insert key issue has been fixed.
|
|
243
|
+
- `#333851` - Dynamically changing the holidays issue has been fixed.
|
|
244
|
+
|
|
245
|
+
## 19.2.59 (2021-08-31)
|
|
246
|
+
|
|
247
|
+
### Gantt
|
|
248
|
+
|
|
249
|
+
#### Bug Fixes
|
|
250
|
+
|
|
251
|
+
- `#339434` - Issue in tooltip has been resolved.
|
|
252
|
+
|
|
253
|
+
## 19.2.57 (2021-08-24)
|
|
254
|
+
|
|
255
|
+
### Gantt
|
|
256
|
+
|
|
257
|
+
#### Bug Fixes
|
|
258
|
+
|
|
259
|
+
- `#339511` - Issue in maintaining resource selection has been resolved.
|
|
260
|
+
- `#338206` - Cleared warnings thrown in Firefox browser.
|
|
261
|
+
|
|
262
|
+
## 19.2.56 (2021-08-17)
|
|
263
|
+
|
|
264
|
+
### Gantt
|
|
265
|
+
|
|
266
|
+
#### Bug Fixes
|
|
267
|
+
|
|
268
|
+
- `#338587` - Issue in assigning empty data to datasource has been resolved.
|
|
269
|
+
- `#335677` - Issue in `expandAtLevel` and `collapseAtLevel` method with virtual scrolling has been resolved.
|
|
270
|
+
|
|
271
|
+
## 19.2.55 (2021-08-11)
|
|
272
|
+
|
|
273
|
+
### Gantt
|
|
274
|
+
|
|
275
|
+
#### Bug Fixes
|
|
276
|
+
|
|
277
|
+
- `#336211` - Issue with Virtual Scrolling in Firefox browse has been resolved.
|
|
278
|
+
|
|
279
|
+
## 19.2.47 (2021-07-13)
|
|
280
|
+
|
|
281
|
+
### Gantt
|
|
282
|
+
|
|
283
|
+
#### Bug Fixes
|
|
284
|
+
|
|
285
|
+
- `#331618` - Issue in updating `dataSource` property has been fixed.
|
|
286
|
+
- `#333672` - Issue in calculating duration across DST has been fixed.
|
|
287
|
+
- Issue in tooltip position has been fixed.
|
|
288
|
+
|
|
289
|
+
## 19.2.46 (2021-07-06)
|
|
290
|
+
|
|
291
|
+
### Gantt
|
|
292
|
+
|
|
293
|
+
#### Bug Fixes
|
|
294
|
+
|
|
295
|
+
- `#331671` - Right Labels are rendered properly in exported PDF document.
|
|
296
|
+
- `#332161` - Issue fixed when drag and drop performed after adding record through context menu.
|
|
297
|
+
|
|
298
|
+
## 19.2.44 (2021-06-30)
|
|
299
|
+
|
|
300
|
+
### Gantt
|
|
301
|
+
|
|
302
|
+
#### New Features
|
|
303
|
+
|
|
304
|
+
- `#290125` - Provided support to add multiple tasks in Gantt.
|
|
305
|
+
|
|
306
|
+
## 19.1.69 (2021-06-15)
|
|
307
|
+
|
|
308
|
+
### Gantt
|
|
309
|
+
|
|
310
|
+
#### Bug Fixes
|
|
311
|
+
|
|
312
|
+
- `#330806` - When using `updateTaskId` method with predecessor field is not mapped in the `taskFields` has been fixed.
|
|
313
|
+
- At certain zoom level, both halves of year are H1 has been resolved.
|
|
314
|
+
|
|
315
|
+
## 19.1.66 (2021-06-01)
|
|
316
|
+
|
|
317
|
+
### Gantt
|
|
318
|
+
|
|
319
|
+
#### Bug Fixes
|
|
320
|
+
|
|
321
|
+
- `#328182` - Mismatch between timeline and chart body content has been fixed.
|
|
322
|
+
- `#165629` - Notes updated properly in Gantt chart when new task is added.
|
|
323
|
+
- `#325331` - Immutable mode issue on data source refresh has been fixed.
|
|
324
|
+
- `F163073` - Issue on `RemoteSaveAdaptor` has been fixed.
|
|
325
|
+
|
|
326
|
+
## 19.1.64 (2021-05-19)
|
|
327
|
+
|
|
328
|
+
### Gantt
|
|
329
|
+
|
|
330
|
+
#### Bug Fixes
|
|
331
|
+
|
|
332
|
+
- `#325587` - Issue while deleting resource on split task has been fixed.
|
|
333
|
+
- Issue on dynamically changing the `allowTaskbarEditing` property has been fixed.
|
|
334
|
+
- `#165210` - Issue while filtering using Excel type has been fixed.
|
|
335
|
+
- `#327043` - Issue in rendering taskbar template has been fixed.
|
|
336
|
+
|
|
337
|
+
## 19.1.63 (2021-05-13)
|
|
338
|
+
|
|
339
|
+
### Gantt
|
|
340
|
+
|
|
341
|
+
#### New Features
|
|
342
|
+
|
|
343
|
+
- `#264444, #296315` - Provided support for managing date with different time zones.
|
|
344
|
+
- `#317529, #320843` - Provide support to cancel the merging of split tasks using client-side event.
|
|
345
|
+
- `#307881`, `#309475`, `#325067` - Improved performance while scrolling, when predecessors are mapped.
|
|
346
|
+
|
|
347
|
+
#### Bug Fixes
|
|
348
|
+
|
|
349
|
+
- `#326155` - Issue in splitting task using public method has been fixed.
|
|
350
|
+
- `#325948` - Issue in adding new task with empty string has been fixed.
|
|
351
|
+
- `#325585` - Issue while defining columns and dynamically changing the view type has been fixed.
|
|
352
|
+
|
|
353
|
+
## 19.1.59 (2021-05-04)
|
|
354
|
+
|
|
355
|
+
### Gantt
|
|
356
|
+
|
|
357
|
+
#### Bug Fixes
|
|
358
|
+
|
|
359
|
+
- `#325250` - Progress updated properly in manual scheduling.
|
|
360
|
+
- `#324644` - Issue on adding records, when Gantt view is changed has been fixed.
|
|
361
|
+
- `#325627` - Editing works fine after when holiday is set dynamically.
|
|
362
|
+
|
|
363
|
+
## 19.1.58 (2021-04-27)
|
|
364
|
+
|
|
365
|
+
### Gantt
|
|
366
|
+
|
|
367
|
+
#### Bug Fixes
|
|
368
|
+
|
|
369
|
+
- `#324141` - Issue in tooltip rendering position has been fixed.
|
|
370
|
+
- `#320979` - Issue on changing data source and timeline settings on same time has been fixed.
|
|
371
|
+
- `F163357` - Duplicating issue when a task is dropped below an unassigned resource in the resource view has been fixed.
|
|
372
|
+
- `F164497` - Issue in editing end date of a task has been fixed.
|
|
373
|
+
|
|
374
|
+
## 19.1.57 (2021-04-20)
|
|
375
|
+
|
|
376
|
+
### Gantt
|
|
377
|
+
|
|
378
|
+
#### Bug Fixes
|
|
379
|
+
|
|
380
|
+
- `F164497` - Issue in editing end date of a task has been fixed.
|
|
381
|
+
|
|
382
|
+
## 19.1.56 (2021-04-13)
|
|
383
|
+
|
|
384
|
+
### Gantt
|
|
385
|
+
|
|
386
|
+
#### Bug Fixes
|
|
387
|
+
|
|
388
|
+
- `#320979` - Provided support to update data source dynamically with `collapseAllParentTasks` and `enableMultiTaskbar` enabled mode.
|
|
389
|
+
|
|
390
|
+
## 19.1.55 (2021-04-06)
|
|
391
|
+
|
|
392
|
+
### Gantt
|
|
393
|
+
|
|
394
|
+
#### Bug Fixes
|
|
395
|
+
|
|
396
|
+
- `#320882` - Issue on expand/collapse icon in `Resource view` has been fixed.
|
|
397
|
+
|
|
398
|
+
## 19.1.54 (2021-03-30)
|
|
399
|
+
|
|
400
|
+
### Gantt
|
|
401
|
+
|
|
402
|
+
#### New Features
|
|
403
|
+
|
|
404
|
+
- `#298361` - Provided Observable data binding support in Gantt.
|
|
405
|
+
- `#300136` - Provided support for tab like behaviour on cell navigation for cell edit mode.
|
|
406
|
+
|
|
407
|
+
## 18.4.49 (2021-03-23)
|
|
408
|
+
|
|
409
|
+
### Gantt
|
|
410
|
+
|
|
411
|
+
#### New Features
|
|
412
|
+
|
|
413
|
+
- `#317550` - Provided support to define `valueAccessor` as string.
|
|
414
|
+
|
|
415
|
+
#### Bug Fixes
|
|
416
|
+
|
|
417
|
+
- Console error when end date of segments is given as string has been fixed.
|
|
418
|
+
|
|
419
|
+
## 18.4.47 (2021-03-09)
|
|
420
|
+
|
|
421
|
+
### Gantt
|
|
422
|
+
|
|
423
|
+
#### Bug Fixes
|
|
424
|
+
|
|
425
|
+
- `316898` - Maintained additional fields in segments on zooming action.
|
|
426
|
+
|
|
427
|
+
## 18.4.44 (2021-02-23)
|
|
428
|
+
|
|
429
|
+
### Gantt
|
|
430
|
+
|
|
431
|
+
#### Bug Fixes
|
|
432
|
+
|
|
433
|
+
- `#315501` - Error on closing filter menu while focusing out has been resolved.
|
|
434
|
+
|
|
435
|
+
## 18.4.43 (2021-02-16)
|
|
436
|
+
|
|
437
|
+
### Gantt
|
|
438
|
+
|
|
439
|
+
#### Bug Fixes
|
|
440
|
+
|
|
441
|
+
- `#306101` - Rendered milestone at default end time on taskbar editing.
|
|
442
|
+
- `#313819` - Highlighted bottom tier weekend header cell.
|
|
443
|
+
|
|
444
|
+
### Gantt
|
|
445
|
+
|
|
446
|
+
#### Bug Fixes
|
|
447
|
+
|
|
448
|
+
- `#311841` - Duplicating records issue while indent action has been resolved.
|
|
449
|
+
- `F160722` - Error on rendering editing tooltip has been resolved.
|
|
450
|
+
- `F161444` - Error while hiding context menu items has been resolved.
|
|
451
|
+
|
|
452
|
+
## 18.4.41 (2021-02-02)
|
|
453
|
+
|
|
454
|
+
### Gantt
|
|
455
|
+
|
|
456
|
+
#### Bug Fixes
|
|
457
|
+
|
|
458
|
+
- `#298884` - Error on reorder rows method has been fixed.
|
|
459
|
+
|
|
460
|
+
#### New Features
|
|
461
|
+
|
|
462
|
+
- `#306342` - Included target element in `actionBegin`, `taskbarEditing`, `contextMenuOpen` events.
|
|
463
|
+
|
|
464
|
+
## 18.4.39 (2021-01-28)
|
|
465
|
+
|
|
466
|
+
### Gantt
|
|
467
|
+
|
|
468
|
+
#### New Features
|
|
469
|
+
|
|
470
|
+
- `#291192` - Provided Immutable Support to refresh specific rows while performing Gantt actions.
|
|
471
|
+
|
|
472
|
+
#### Bug Fixes
|
|
473
|
+
|
|
474
|
+
- `F161492` - Console error on converting milestone to task has been fixed.
|
|
475
|
+
|
|
476
|
+
## 18.4.35 (2021-01-19)
|
|
477
|
+
|
|
478
|
+
### Gantt
|
|
479
|
+
|
|
480
|
+
#### Bug Fixes
|
|
481
|
+
|
|
482
|
+
- `F161492` - Console error on drag and drop action has been fixed.
|
|
483
|
+
- `F161492` - Issue on indent action has been fixed.
|
|
484
|
+
|
|
485
|
+
## 18.4.33 (2021-01-05)
|
|
486
|
+
|
|
487
|
+
### Gantt
|
|
488
|
+
|
|
489
|
+
#### Bug Fixes
|
|
490
|
+
|
|
491
|
+
- `#298884` - Issue on reorder rows method in virtual scroll support has been fixed.
|
|
492
|
+
|
|
493
|
+
## 18.4.32 (2020-12-29)
|
|
494
|
+
|
|
495
|
+
### Gantt
|
|
496
|
+
|
|
497
|
+
#### Bug Fixes
|
|
498
|
+
|
|
499
|
+
- `F160722` - Issue on editing tooltip template has been fixed.
|
|
500
|
+
- `#306971` - HTML encoder issue with notes column has been fixed.
|
|
501
|
+
- `#306928` - Timeline width issue on zoom to fit action has been resolved.
|
|
502
|
+
|
|
503
|
+
## 18.4.31 (2020-12-22)
|
|
504
|
+
|
|
505
|
+
### Gantt
|
|
506
|
+
|
|
507
|
+
#### Bug Fixes
|
|
508
|
+
|
|
509
|
+
- `#306741` - Issue on closing filter menu while focusing out has been fixed.
|
|
510
|
+
- `#306556` - Issue on duration field of add dialog has been fixed.
|
|
511
|
+
- `#305822` - Issue on updating height on browser resizing has been fixed.
|
|
512
|
+
- `#307295` - Issue on updating data source dynamically has been fixed.
|
|
513
|
+
- `#305728` - Issue on loading large number of records in resource tab has been fixed.
|
|
514
|
+
|
|
515
|
+
## 18.4.30 (2020-12-17)
|
|
516
|
+
|
|
517
|
+
### Gantt
|
|
518
|
+
|
|
519
|
+
#### New Features
|
|
520
|
+
|
|
521
|
+
- `#298884` - Provided `Virtual Scroll` support for Gantt.
|
|
522
|
+
|
|
523
|
+
#### Bug Fixes
|
|
524
|
+
|
|
525
|
+
- `#306090` - Issue on pressing delete key when add/edit dialog is opened has been fixed.
|
|
526
|
+
- `#306342` - Included additional field in `taskData.segments`.
|
|
527
|
+
- `#305420` - Issue on triggering `rowSelected` event while opening context menu has been fixed.
|
|
528
|
+
|
|
529
|
+
## 18.3.52 (2020-12-01)
|
|
530
|
+
|
|
531
|
+
### Gantt
|
|
532
|
+
|
|
533
|
+
#### Bug Fixes
|
|
534
|
+
|
|
535
|
+
- `F159625` - Console error on indent action after adding record has been fixed.
|
|
536
|
+
|
|
537
|
+
## 18.3.51 (2020-11-24)
|
|
538
|
+
|
|
539
|
+
### Gantt
|
|
540
|
+
|
|
541
|
+
#### Bug Fixes
|
|
542
|
+
|
|
543
|
+
- `301606` - Issue in template column when use it as `treeColumnIndex` has been fixed.
|
|
544
|
+
|
|
545
|
+
## 18.3.50 (2020-11-17)
|
|
546
|
+
|
|
547
|
+
### Gantt
|
|
548
|
+
|
|
549
|
+
#### Bug Fixes
|
|
550
|
+
|
|
551
|
+
- `293889` - Console error in split task when allowTaskbarEditing is disable has been fixed.
|
|
552
|
+
- `300744` - Console error on clicking add/edit toolbar has been fixed.
|
|
553
|
+
- `301653` - Issue on split task when date is given as string has been fixed.
|
|
554
|
+
|
|
555
|
+
## 18.3.48 (2020-11-11)
|
|
556
|
+
|
|
557
|
+
### Gantt
|
|
558
|
+
|
|
559
|
+
#### Bug Fixes
|
|
560
|
+
|
|
561
|
+
- `299695` - Issue in left label template has been fixed.
|
|
562
|
+
- `F159354` - Issue in locale text of predecessor tooltip has been fixed.
|
|
563
|
+
- `300962` - Included timeline property in actionComplete event after zooming action.
|
|
564
|
+
- `300804` - Issue in displaying resources when data source is empty has been fixed.
|
|
565
|
+
|
|
566
|
+
## 18.3.47 (2020-11-05)
|
|
567
|
+
|
|
568
|
+
### Gantt
|
|
569
|
+
|
|
570
|
+
#### New Features
|
|
571
|
+
|
|
572
|
+
- `#292246` - Provided support to split the taskbar into multiple segments through context menu and dialog edit.
|
|
573
|
+
- `#282972, #293345` - Provided support to render predecessor and rows properly in different zooming levels and display scaling size.
|
|
574
|
+
|
|
575
|
+
#### Bug Fixes
|
|
576
|
+
|
|
577
|
+
- `#295381` - Issue on exporting Gantt with partial data has been fixed.
|
|
578
|
+
- `#299370` - Issue on restricting dragging action when read only property set to true.
|
|
579
|
+
- `F159153` - Issue in localized text of dependency tab default value has been fixed.
|
|
580
|
+
- `F158903` - Issue while sorting after add task action has been fixed.
|
|
581
|
+
|
|
582
|
+
## 18.3.42 (2020-10-20)
|
|
583
|
+
|
|
584
|
+
### Gantt
|
|
585
|
+
|
|
586
|
+
#### Bug Fixes
|
|
587
|
+
|
|
588
|
+
- `#296920` - Issue on rendering Gantt with resources has been fixed.
|
|
589
|
+
- `F158128` - Issue on updating DB on `indent` and `outdent` action has been fixed.
|
|
590
|
+
- `#291962` - Dates are not filtered with given date format issue has been fixed.
|
|
591
|
+
- `#295998` - Events are not triggered properly while perform zoom to fit actions has been fixed.
|
|
592
|
+
|
|
593
|
+
## 18.3.35 (2020-10-01)
|
|
594
|
+
|
|
595
|
+
### Gantt
|
|
596
|
+
|
|
597
|
+
#### Bug Fixes
|
|
598
|
+
|
|
599
|
+
- `#293528` - Issue when work value is given as decimal values has been fixed.
|
|
600
|
+
|
|
601
|
+
## 18.2.59 (2020-09-21)
|
|
602
|
+
|
|
603
|
+
### Gantt
|
|
604
|
+
|
|
605
|
+
#### New Features
|
|
606
|
+
|
|
607
|
+
- `#292825` - Provided support to improvement of trigger actions on key press.
|
|
608
|
+
|
|
609
|
+
#### Bug Fixes
|
|
610
|
+
|
|
611
|
+
- `#293539` - Issue while dynamically updating `allowRowDragAndDrop` gets fixed.
|
|
612
|
+
- `#292470` - Issue on edit template in dialog has been fixed.
|
|
613
|
+
- `#293749` - Edit `params` not worked properly for progress column has been fixed.
|
|
614
|
+
|
|
615
|
+
## 18.2.57 (2020-09-08)
|
|
616
|
+
|
|
617
|
+
### Gantt
|
|
618
|
+
|
|
619
|
+
#### Bug Fixes
|
|
620
|
+
|
|
621
|
+
- `#290457` - Issue on customizing the background colour of taskbar in Resource view has been fixed.
|
|
622
|
+
- `F157498` - Console error on indenting record after sorting has been fixed.
|
|
623
|
+
|
|
624
|
+
## 18.2.56 (2020-09-01)
|
|
625
|
+
|
|
626
|
+
### Gantt
|
|
627
|
+
|
|
628
|
+
#### Bug Fixes
|
|
629
|
+
|
|
630
|
+
- `#291158` - Console error on destroy Gantt when allowKeyboard is false has been fixed.
|
|
631
|
+
- `#279528` - Dialog dependency drop-down list has existing dependency data has been fixed.
|
|
632
|
+
|
|
633
|
+
## 18.2.55 (2020-08-25)
|
|
634
|
+
|
|
635
|
+
### Gantt
|
|
636
|
+
|
|
637
|
+
#### Bug Fixes
|
|
638
|
+
|
|
639
|
+
- `#288438` - Tooltip rendering issue has been fixed.
|
|
640
|
+
- The issue of the bottom tire format in Chinese culture has been fixed.
|
|
641
|
+
|
|
642
|
+
## 18.2.48 (2020-08-04)
|
|
643
|
+
|
|
644
|
+
### Gantt
|
|
645
|
+
|
|
646
|
+
#### New Features
|
|
647
|
+
|
|
648
|
+
- `#287282` - Provided support to change viewType of Gantt dynamically.
|
|
649
|
+
|
|
650
|
+
#### Bug Fixes
|
|
651
|
+
|
|
652
|
+
- `#285626` - Console error while rendering multiple Gantt has been fixed.
|
|
653
|
+
- `#285749` - Issue on parent progress calculation while delete child record has been fixed.
|
|
654
|
+
|
|
655
|
+
## 18.2.47 (2020-07-28)
|
|
656
|
+
|
|
657
|
+
### Gantt
|
|
658
|
+
|
|
659
|
+
#### Bug Fixes
|
|
660
|
+
|
|
661
|
+
- `#284995` - Issue in predecessor lines of exported pdf document has been fixed.
|
|
662
|
+
- `#284995` - Content overflow issue in exported pdf document has been fixed.
|
|
663
|
+
- `#284052` - Editing issue in Gantt Chart when using DB has been fixed.
|
|
664
|
+
|
|
665
|
+
#### New Features
|
|
666
|
+
|
|
667
|
+
- `#280004` - Given support to render edit template fields in Gantt edit dialog.
|
|
668
|
+
|
|
669
|
+
## 18.2.46 (2020-07-21)
|
|
670
|
+
|
|
671
|
+
### Gantt
|
|
672
|
+
|
|
673
|
+
#### Bug Fixes
|
|
674
|
+
|
|
675
|
+
- `#276968` - Column misalignment issue after editing has been fixed.
|
|
676
|
+
- `F155689` - Issue on expanding records while mapping expand status of record has been fixed.
|
|
677
|
+
|
|
678
|
+
## 18.2.45 (2020-07-14)
|
|
679
|
+
|
|
680
|
+
### Gantt
|
|
681
|
+
|
|
682
|
+
#### Bug Fixes
|
|
683
|
+
|
|
684
|
+
- `#278235` - Parent Id is not updated properly on row drag and drop action issue gets resolved.
|
|
685
|
+
- `F155766` - PDF export document Gantt timeline issue after zooming has been resolved.
|
|
686
|
+
- `#279872` - Issue while updating add and edit dialog fields in action begin events are resolved.
|
|
687
|
+
- `#275651` - Issue while dynamically updating `worWeek` gets fixed.
|
|
688
|
+
- `#277029` - Updating custom column in action begin event issue gets resolved.
|
|
689
|
+
|
|
690
|
+
## 18.2.44 (2020-07-07)
|
|
691
|
+
|
|
692
|
+
### Gantt
|
|
693
|
+
|
|
694
|
+
#### New Features
|
|
695
|
+
|
|
696
|
+
- `#245866, #279740, #248032` - Provided support to `render multiple resource tasks` in a row on collapsed state in resource view Gantt.
|
|
697
|
+
- `#252413` - Provided support to display the `over allocation` indicators for a resources in resource view Gantt.
|
|
698
|
+
- `#262121` - Provided support for `dependency` between two tasks in resource view Gantt.
|
|
699
|
+
- `#269776` - Provided support for rendering Gantt as `read only`.
|
|
700
|
+
|
|
701
|
+
## 18.1.59 (2020-06-23)
|
|
702
|
+
|
|
703
|
+
### Gantt
|
|
704
|
+
|
|
705
|
+
#### Bug Fixes
|
|
706
|
+
|
|
707
|
+
- `#281103`- Taskbar not rendered properly while cancel the new child record by context menu action has been fixed.
|
|
708
|
+
- `#281247`- Parent id is not updated on add a child record by context menu has been fixed.
|
|
709
|
+
- `#279689` - Issue in displaying values with boolean edit type was fixed.
|
|
710
|
+
- `#281102`, `#281154` - Events not triggered with correct request type in indent action has been fixed.
|
|
711
|
+
- `#281251` - Not continued to tab onto the next non-Gantt Chart element issue has been fixed.
|
|
712
|
+
- `#280070`- Issue on pdf export date format mismatch in Gantt has been fixed.
|
|
713
|
+
- `#279234` - Console error while selecting the record issue gets resolved.
|
|
714
|
+
- `#279689`- Issue in updating start date with date time picker when custom columns are rendered has been fixed.
|
|
715
|
+
- `#280802` - Issue on maintaining parent Id value while adding records with empty data source gets fixed.
|
|
716
|
+
|
|
717
|
+
## 18.1.57 (2020-06-16)
|
|
718
|
+
|
|
719
|
+
### Gantt
|
|
720
|
+
|
|
721
|
+
#### New Features
|
|
722
|
+
|
|
723
|
+
- `#278724` - Provided support for hiding ID column in dependency tab.
|
|
724
|
+
|
|
725
|
+
## 18.1.55 (2020-06-02)
|
|
726
|
+
|
|
727
|
+
### Gantt
|
|
728
|
+
|
|
729
|
+
#### Bug Fixes
|
|
730
|
+
|
|
731
|
+
- `#278176` - Zoom in or zoom out toolbar button disabled after zoom to fit action was fixed.
|
|
732
|
+
- `#278238` - Action begin event not triggered on finish to finish predecessor was fixed.
|
|
733
|
+
|
|
734
|
+
#### New Features
|
|
735
|
+
|
|
736
|
+
- `#269776` - Provided support for `expandAtLevel` method and changed `expandByIndex` method parameter as array type.
|
|
737
|
+
|
|
738
|
+
## 18.1.54 (2020-05-26)
|
|
739
|
+
|
|
740
|
+
### Gantt
|
|
741
|
+
|
|
742
|
+
#### Bug Fixes
|
|
743
|
+
|
|
744
|
+
- `#277029` - Update value not display on edit action issue has been fixed.
|
|
745
|
+
- `#276942` - Issue while passing additional parameter to the server side on CRUD operation has been fixed.
|
|
746
|
+
|
|
747
|
+
## 18.1.53 (2020-05-19)
|
|
748
|
+
|
|
749
|
+
### Gantt
|
|
750
|
+
|
|
751
|
+
#### Bug Fixes
|
|
752
|
+
|
|
753
|
+
- `#39566` - Issue when remove event markers dynamically has been resolved.
|
|
754
|
+
- `F154261`,`#276047` - Issue while adding new record with empty data on load time gets resolved.
|
|
755
|
+
- `#274206` - Issue in updating resource column gets resolved.
|
|
756
|
+
|
|
757
|
+
#### New Features
|
|
758
|
+
|
|
759
|
+
- `#273107` - Provided support to render task type on load time.
|
|
760
|
+
|
|
761
|
+
#### Breaking Changes
|
|
762
|
+
|
|
763
|
+
- Now the resource value in the `taskData` is always array of objects type and it is irrespective of resource value type in data source.
|
|
764
|
+
|
|
765
|
+
## 18.1.52 (2020-05-13)
|
|
766
|
+
|
|
767
|
+
### Gantt
|
|
768
|
+
|
|
769
|
+
#### Bug Fixes
|
|
770
|
+
|
|
771
|
+
- `#268349` - Issue on maintaining duration data type gets resolved.
|
|
772
|
+
- Column filter menu displayed in wrong place has been fixed.
|
|
773
|
+
|
|
774
|
+
#### New Features
|
|
775
|
+
|
|
776
|
+
- Provided drag and drop support for resource view Gantt.
|
|
777
|
+
- `#271392` - Provided support to update task id dynamically.
|
|
778
|
+
- `#269776` - Provided support to indent a selected record.
|
|
779
|
+
|
|
780
|
+
## 18.1.48 (2020-05-05)
|
|
781
|
+
|
|
782
|
+
### Gantt
|
|
783
|
+
|
|
784
|
+
#### Bug Fixes
|
|
785
|
+
|
|
786
|
+
- `#273422` - Date mismatch for parent and child record gets resolved.
|
|
787
|
+
|
|
788
|
+
## 18.1.46 (2020-04-28)
|
|
789
|
+
|
|
790
|
+
### Gantt
|
|
791
|
+
|
|
792
|
+
#### Bug Fixes
|
|
793
|
+
|
|
794
|
+
- `#273440` - Issue on updating end date value using cell edit gets resolved.
|
|
795
|
+
- `#273426` - Issue on validating parent start date on taskbar edit action gets resolved.
|
|
796
|
+
- `#274066` - Console error on dragging parent milestone task gets resolved.
|
|
797
|
+
|
|
798
|
+
## 18.1.45 (2020-04-21)
|
|
799
|
+
|
|
800
|
+
### Gantt
|
|
801
|
+
|
|
802
|
+
#### Bug Fixes
|
|
803
|
+
|
|
804
|
+
- `#268281` - Issue on adding dependency using dialog gets resolved.
|
|
805
|
+
|
|
806
|
+
## 18.1.44 (2020-04-14)
|
|
807
|
+
|
|
808
|
+
### Gantt
|
|
809
|
+
|
|
810
|
+
#### Bug Fixes
|
|
811
|
+
|
|
812
|
+
- `#270801` - Issue on end date calculations gets resolved.
|
|
813
|
+
- `#270563` - Console error throws while taskbar resizing with use of taskbar template has been fixed.
|
|
814
|
+
- Issue in mapping custom class of task from data source has been fixed.
|
|
815
|
+
|
|
816
|
+
## 18.1.43 (2020-04-07)
|
|
817
|
+
|
|
818
|
+
### Gantt
|
|
819
|
+
|
|
820
|
+
#### New Features
|
|
821
|
+
|
|
822
|
+
- `#269693, #269694` - Provided accessibility support for column header and filter.
|
|
823
|
+
|
|
824
|
+
#### Bug Fixes
|
|
825
|
+
|
|
826
|
+
- `#270384` - Prevented event markers, indicators, holidays, baseline consideration for timeline while doing zoom to fit action.
|
|
827
|
+
|
|
828
|
+
## 18.1.42 (2020-04-01)
|
|
829
|
+
|
|
830
|
+
### Gantt
|
|
831
|
+
|
|
832
|
+
#### Bug Fixes
|
|
833
|
+
|
|
834
|
+
- `#264099` - Console error on tab key press has been fixed.
|
|
835
|
+
- `#269692`,`#269690` - Issue on focussing to the next element has been fixed.
|
|
836
|
+
- `#269772` - Prevented taskbar editing tooltip while tooltip is disabled.
|
|
837
|
+
|
|
838
|
+
## 18.1.36-beta (2020-03-19)
|
|
839
|
+
|
|
840
|
+
### Gantt
|
|
841
|
+
|
|
842
|
+
#### New Features
|
|
843
|
+
|
|
844
|
+
- `#238591`,`#247663`,`#253913`,`#263052`,`F147148`,`F147548`,`F149280` - Provided support for PDF export which exports Gantt data to PDF format.
|
|
845
|
+
- `#258677`,`#264570`,`F149280` - Provided support for manual task scheduling which is used to scheduling the task manually without any dependency.
|
|
846
|
+
- `F146634` - Provided support for Resource Unit, which indicate the efficiency of resource by each task and Work mapping support which is used to allocate the total number of works to a task.
|
|
847
|
+
- `#245866`,`#252413`,`#262485`,`F147349` - Provided support for the Resource view which is used to visualize the list of tasks assigned to each resource in hierarchical order.
|
|
848
|
+
|
|
849
|
+
#### Bug Fixes
|
|
850
|
+
|
|
851
|
+
- `#263236` - Issue on multi-level dragged parent dropped into last index has been fixed.
|
|
852
|
+
- `#264099` - Issue in tab key action in edited state is fixed.
|
|
853
|
+
|
|
854
|
+
## 17.4.46 (2020-01-30)
|
|
855
|
+
|
|
856
|
+
### Gantt
|
|
857
|
+
|
|
858
|
+
#### New Features
|
|
859
|
+
|
|
860
|
+
- `F148795` - Provided custom editor support in dialog edit.
|
|
861
|
+
- `F149069` - Provided support to render parent as milestone.
|
|
862
|
+
- `#257320` - Provided support for 'zoom to fit' based on visible tasks alone.
|
|
863
|
+
|
|
864
|
+
#### Bug Fixes
|
|
865
|
+
|
|
866
|
+
- `F150408` - Baseline tooltip not rendered for milestone tasks has been fixed.
|
|
867
|
+
- `#260944` - Issue in preventing taskbar editing has been fixed.
|
|
868
|
+
|
|
869
|
+
## 17.4.44 (2021-01-21)
|
|
870
|
+
|
|
871
|
+
### Gantt
|
|
872
|
+
|
|
873
|
+
#### Bug Fixes
|
|
874
|
+
|
|
875
|
+
- `#260331` - Typescript declaration issue fixed.
|
|
876
|
+
|
|
877
|
+
## 17.4.41 (2020-01-07)
|
|
878
|
+
|
|
879
|
+
### Gantt
|
|
880
|
+
|
|
881
|
+
#### New Features
|
|
882
|
+
|
|
883
|
+
- `#253076` - Provided support to focus Gantt on tab key press.
|
|
884
|
+
|
|
885
|
+
## 17.4.40 (2019-12-24)
|
|
886
|
+
|
|
887
|
+
### Gantt
|
|
888
|
+
|
|
889
|
+
#### Bug Fixes
|
|
890
|
+
|
|
891
|
+
- `F149551` - Handled empty value while editing the numeric edit type field.
|
|
892
|
+
|
|
893
|
+
## 17.4.39 (2019-12-17)
|
|
894
|
+
|
|
895
|
+
### Gantt
|
|
896
|
+
|
|
897
|
+
#### Bug Fixes
|
|
898
|
+
|
|
899
|
+
- `F147793` - Context menu not closing issue while scrolling on the Gantt element has been fixed.
|
|
900
|
+
|
|
901
|
+
#### Breaking Changes
|
|
902
|
+
|
|
903
|
+
- Now `dateFormat` default value has been changed to null and the value will be updated by given culture. It is also possible to override `dateFormat` property by custom value.
|
|
904
|
+
|
|
905
|
+
#### New Features
|
|
906
|
+
|
|
907
|
+
- `#253909` - Provided support for converting a task to milestone by method.
|
|
908
|
+
- `F148875` - Provided support for disabling column editing on dialog popup.
|
|
909
|
+
- `F146587` - Provided support for taskbarClick event in Gantt.
|
|
910
|
+
- `F146585` - Provided support for mouseHover event in Gantt.
|
|
911
|
+
|
|
912
|
+
## 17.3.30 (2019-12-03)
|
|
913
|
+
|
|
914
|
+
### Gantt
|
|
915
|
+
|
|
916
|
+
#### Bug Fixes
|
|
917
|
+
|
|
918
|
+
- `#253076` - Accessibility issues in Gantt has been fixed.
|
|
919
|
+
|
|
920
|
+
## 17.3.29 (2019-11-26)
|
|
921
|
+
|
|
922
|
+
### Gantt
|
|
923
|
+
|
|
924
|
+
#### Bug Fixes
|
|
925
|
+
|
|
926
|
+
- `F149069` - Parent taskbar alignment issue while rendering with single milestone child record has been fixed.
|
|
927
|
+
- `F149070` - Key navigation disable issue on Tree Grid section has been fixed.
|
|
928
|
+
- `#255266` - ParentID field not available in taskData field has been fixed.
|
|
929
|
+
|
|
930
|
+
## 17.3.28 (2019-11-19)
|
|
931
|
+
|
|
932
|
+
### Gantt
|
|
933
|
+
|
|
934
|
+
#### Bug Fixes
|
|
935
|
+
|
|
936
|
+
- `#253912` - Parent taskbar disappearance issue while deleting all its child records has been fixed.
|
|
937
|
+
|
|
938
|
+
## 17.3.19 (2019-10-22)
|
|
939
|
+
|
|
940
|
+
### Gantt
|
|
941
|
+
|
|
942
|
+
#### Bug Fixes
|
|
943
|
+
|
|
944
|
+
- `249581` - Browser hangs issue while change schedule mode to year has been fixed.
|
|
945
|
+
- `252195` - Issue on forEach method iteration in IE11 has been fixed.
|
|
946
|
+
|
|
947
|
+
## 17.3.14 (2019-10-03)
|
|
948
|
+
|
|
949
|
+
### Gantt
|
|
950
|
+
|
|
951
|
+
#### Bug Fixes
|
|
952
|
+
|
|
953
|
+
- `F147755` - Chart part disappearing issue when splitter position value greater than control width has been fixed.
|
|
954
|
+
|
|
955
|
+
## 17.3.9-beta (2019-09-20)
|
|
956
|
+
|
|
957
|
+
### Gantt
|
|
958
|
+
|
|
959
|
+
#### Bug Fixes
|
|
960
|
+
|
|
961
|
+
- `#245866` - Alignment issue with `height` property value as `auto` has been fixed.
|
|
962
|
+
- `F145725` - Issue with cell editing on newly added record has been fixed.
|
|
963
|
+
- `#246761` - Issue while providing date field value with empty string value and invalid date values has been fixed.
|
|
964
|
+
- `#247124` - Issue while loading Gantt SB samples in Mobile devices has been fixed.
|
|
965
|
+
- `F147329` - Issue in progress calculation with unscheduled tasks has been fixed.
|
|
966
|
+
- `F147380` - Issue with prevent edit dialog has been fixed.
|
|
967
|
+
|
|
968
|
+
#### New Features
|
|
969
|
+
|
|
970
|
+
- `#233407` - Provided support to perform Excel and CSV exporting in Gantt.
|
|
971
|
+
|
|
972
|
+
## 17.2.46 (2019-08-22)
|
|
973
|
+
|
|
974
|
+
### Gantt
|
|
975
|
+
|
|
976
|
+
#### Bug Fixes
|
|
977
|
+
|
|
978
|
+
- `F145733` - Alignment issue with header and rows on splitter resizing has been fixed.
|
|
979
|
+
- `F146641` - Issue with indicators tooltip support has been fixed.
|
|
980
|
+
|
|
981
|
+
## 17.2.41 (2019-08-14)
|
|
982
|
+
|
|
983
|
+
### Gantt
|
|
984
|
+
|
|
985
|
+
#### Bug Fixes
|
|
986
|
+
|
|
987
|
+
- `#243770` - Issue in date picker with custom format has been fixed.
|
|
988
|
+
- `#243238` - Included current edited data in `actionComplete` event arguments.
|
|
989
|
+
|
|
990
|
+
## 17.2.40 (2019-08-06)
|
|
991
|
+
|
|
992
|
+
### Gantt
|
|
993
|
+
|
|
994
|
+
#### Bug Fixes
|
|
995
|
+
|
|
996
|
+
- #F145936 - Custom column values not updated in data source on Editing has been fixed.
|
|
997
|
+
- Lexical declaration issues in es2015 has been fixed.
|
|
998
|
+
|
|
999
|
+
## 17.2.36 (2019-07-24)
|
|
1000
|
+
|
|
1001
|
+
### Gantt
|
|
1002
|
+
|
|
1003
|
+
#### Bug Fixes
|
|
1004
|
+
|
|
1005
|
+
- #241781 - Gantt task-data property missing in template data issue has been fixed.
|
|
1006
|
+
|
|
1007
|
+
## 17.2.28-beta (2019-06-27)
|
|
1008
|
+
|
|
1009
|
+
### Gantt
|
|
1010
|
+
|
|
1011
|
+
#### Bug Fixes
|
|
1012
|
+
|
|
1013
|
+
- #238228 - Issue while rendering tooltip with smaller duration has been fixed.
|
|
1014
|
+
|
|
1015
|
+
#### New Features
|
|
1016
|
+
|
|
1017
|
+
- Now Gantt supports context menu to perform various action.
|
|
1018
|
+
- Provided support to perform timeline zoom in, zoom out and zoom to fit actions in Gantt.
|
|
1019
|
+
- Provided key interaction support in Gantt.
|
|
1020
|
+
|
|
1021
|
+
## 17.1.49 (2019-05-29)
|
|
1022
|
+
|
|
1023
|
+
### Gantt
|
|
1024
|
+
|
|
1025
|
+
#### Bug Fixes
|
|
1026
|
+
|
|
1027
|
+
- #F144145 - Task Id duplication issue while adding new record has been fixed.
|
|
1028
|
+
|
|
1029
|
+
## 17.1.47 (2019-05-14)
|
|
1030
|
+
|
|
1031
|
+
### Gantt
|
|
1032
|
+
|
|
1033
|
+
#### Bug Fixes
|
|
1034
|
+
|
|
1035
|
+
- #233041 - Alignment issue with timeline and vertical lines has been fixed.
|
|
1036
|
+
|
|
1037
|
+
#### New Features
|
|
1038
|
+
|
|
1039
|
+
- #F143360 - Provided support to refresh the `dataSource` dynamically.
|
|
1040
|
+
|
|
1041
|
+
## 17.1.43 (2019-04-30)
|
|
1042
|
+
|
|
1043
|
+
### Gantt
|
|
1044
|
+
|
|
1045
|
+
#### Bug Fixes
|
|
1046
|
+
|
|
1047
|
+
- Bug fixes included.
|
|
1048
|
+
|
|
1049
|
+
## 17.1.40 (2019-04-09)
|
|
1050
|
+
|
|
1051
|
+
### Gantt
|
|
1052
|
+
|
|
1053
|
+
#### Bug Fixes
|
|
1054
|
+
|
|
1055
|
+
- Internal bug fixes included.
|
|
1056
|
+
|
|
1057
|
+
## 17.1.32-beta (2019-03-13)
|
|
1058
|
+
|
|
1059
|
+
### Gantt
|
|
1060
|
+
|
|
1061
|
+
- **Data sources** – Bind hierarchical or self-referential data to Gantt chart with an array of JavaScript objects or DataManager.
|
|
1062
|
+
- **Timeline** – Display timescale from minutes to decades easily, and also display custom texts in the timeline units. Timeline can be displayed in either one-tier or two-tier layout.
|
|
1063
|
+
- **Customizable Taskbars** – Display various tasks in a project using child taskbar, summary taskbar and milestone UI, that can also be customized with templates.
|
|
1064
|
+
- **Unscheduled tasks** – Support for displaying tasks with undefined start date, end date or duration in a project.
|
|
1065
|
+
- **Baselines** – Display the deviations between planned dates and actual dates of a task in a project using baselines.
|
|
1066
|
+
- **CRUD actions** – Provides the options to dynamically insert, delete and update tasks using columns, dialog and taskbar editing options.
|
|
1067
|
+
- **Task dependency** – Define or update the dependencies between the tasks in a project with four types of task dependencies Finish – Start, Start – Finish, Finish – Finish, Start – Start.
|
|
1068
|
+
- **Markers and indicators** - Support for displaying indicators and flags along with taskbars and task labels. Also map important events in a project using event marker.
|
|
1069
|
+
- **Filtering** – Offers filtering the Gantt content using column menu filtering along with toolbar search box.
|
|
1070
|
+
- **Customizable columns** – Customize the columns and add custom columns to Gantt chart at initialization through column property.
|
|
1071
|
+
- **Enriched UI** – Support for Material, bootstrap, fabric and high contrast themes along with other UI options like holidays support, vertical and horizontal grid lines support and so on.
|
|
1072
|
+
- **Localization** - Provides inherent support to localize the UI.
|