@syncfusion/ej2-treegrid 20.4.44 → 20.4.48
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 +8 -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 +5 -0
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +5 -0
- 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 +9 -9
- package/src/treegrid/base/treegrid.js +5 -0
|
@@ -6420,6 +6420,11 @@ var TreeGrid = /** @__PURE__ @class */ (function (_super) {
|
|
|
6420
6420
|
if ((!isCountRequired(this) || childRecords.length) || action === 'collapse') {
|
|
6421
6421
|
this.localExpand(action, row, record);
|
|
6422
6422
|
}
|
|
6423
|
+
var lastrowIdx = this.getVisibleRecords()[this.getVisibleRecords().length - 1]['index'];
|
|
6424
|
+
var lastRow = this.getRowByIndex(lastrowIdx);
|
|
6425
|
+
if (this.grid.getContentTable().clientHeight <= this.grid.getContent().clientHeight && !isNullOrUndefined(lastRow) && !lastRow.cells[0].classList.contains('e-lastrowcell')) {
|
|
6426
|
+
this.lastRowBorder(lastRow, true);
|
|
6427
|
+
}
|
|
6423
6428
|
}
|
|
6424
6429
|
if (isCountRequired(this) && action === 'expand') {
|
|
6425
6430
|
this.dataResults.result = this.getCurrentViewRecords();
|