@syncfusion/ej2-treegrid 24.2.5 → 24.2.8
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 +16 -0
- package/dist/ej2-treegrid.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js +2 -2
- package/dist/ej2-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-treegrid.es2015.js +7 -1
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +7 -1
- package/dist/es6/ej2-treegrid.es5.js.map +1 -1
- package/dist/global/ej2-treegrid.min.js +2 -2
- package/dist/global/ej2-treegrid.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +8 -8
- package/src/treegrid/actions/edit.js +1 -0
- package/src/treegrid/actions/excel-export.js +3 -1
- package/src/treegrid/base/treegrid.js +3 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -60
- package/.github/PULL_REQUEST_TEMPLATE/feature.md +0 -37
|
@@ -6155,6 +6155,9 @@ let TreeGrid = TreeGrid_1 = class TreeGrid extends Component {
|
|
|
6155
6155
|
record = this.grid.getCurrentViewRecords()[row.rowIndex];
|
|
6156
6156
|
}
|
|
6157
6157
|
}
|
|
6158
|
+
else if (this.rowTemplate) {
|
|
6159
|
+
record = this.grid.getCurrentViewRecords()[row.rowIndex];
|
|
6160
|
+
}
|
|
6158
6161
|
else {
|
|
6159
6162
|
record = this.grid.getCurrentViewRecords()[parseInt(row.getAttribute('data-rowindex'), 10)];
|
|
6160
6163
|
}
|
|
@@ -9665,7 +9668,9 @@ class ExcelExport$1 {
|
|
|
9665
9668
|
}
|
|
9666
9669
|
property = isNullOrUndefined(property) ? Object() : property;
|
|
9667
9670
|
property.dataSource = new DataManager({ json: dtSrc });
|
|
9668
|
-
|
|
9671
|
+
if (this.parent.aggregates.length > 0) {
|
|
9672
|
+
property.query = args['query'];
|
|
9673
|
+
}
|
|
9669
9674
|
return property;
|
|
9670
9675
|
}
|
|
9671
9676
|
/**
|
|
@@ -11467,6 +11472,7 @@ class Edit$1 {
|
|
|
11467
11472
|
}
|
|
11468
11473
|
beforeBatchCancel(args) {
|
|
11469
11474
|
if (this.parent.editSettings.mode === 'Cell') {
|
|
11475
|
+
args['requestType'] = 'cancel';
|
|
11470
11476
|
this.parent.trigger(actionComplete, args);
|
|
11471
11477
|
}
|
|
11472
11478
|
}
|