@syncfusion/ej2-treegrid 19.4.38 → 19.4.47
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 +25 -0
- package/README.md +1 -1
- 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 +25 -6
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +25 -6
- 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/actions/excel-export.js +5 -2
- package/src/treegrid/actions/virtual-scroll.js +4 -1
- package/src/treegrid/base/treegrid.js +11 -1
- package/src/treegrid/models/column.d.ts +1 -1
- package/src/treegrid/renderer/virtual-row-model-generator.js +4 -2
- package/src/treegrid/renderer/virtual-tree-content-render.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,31 @@
|
|
|
4
4
|
|
|
5
5
|
### Tree Grid
|
|
6
6
|
|
|
7
|
+
#### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- `#SF-355817` - Resolved 'No records to display' issue while changing datasource when treeColumnIndex enabled for column template.
|
|
10
|
+
|
|
11
|
+
## 19.4.41 (2022-01-04)
|
|
12
|
+
|
|
13
|
+
### Tree Grid
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#F171247` - Resolved first row hiding issue in iOS device while using virtualization.
|
|
18
|
+
|
|
19
|
+
## 19.4.40 (2021-12-28)
|
|
20
|
+
|
|
21
|
+
### Tree Grid
|
|
22
|
+
|
|
23
|
+
#### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- `#I348232` - Resolved expanding and collapsing the records clearing the selection in checkbox selection while using virtualization.
|
|
26
|
+
- `#I349138` - The expand / collapse state on excel exported file works fine.
|
|
27
|
+
|
|
28
|
+
## 19.4.38 (2021-12-17)
|
|
29
|
+
|
|
30
|
+
### Tree Grid
|
|
31
|
+
|
|
7
32
|
#### New Features
|
|
8
33
|
|
|
9
34
|
- Provided support for `expandByKey`, `collapseByKey` methods and improved `expantAtLevel`, `collapseAtLevel` methods for nested records in tree grid.
|
package/README.md
CHANGED
|
@@ -67,4 +67,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
|
67
67
|
|
|
68
68
|
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/treegrid/CHANGELOG.md?utm_source=npm&utm_campaign=grid)
|
|
69
69
|
|
|
70
|
-
© Copyright
|
|
70
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|