@syncfusion/ej2-angular-treegrid 32.2.4 → 32.2.7
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
CHANGED
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
-
- `
|
|
9
|
+
- `I811698` - Resolved an issue where the records expand on clearing filter in virtualization when the filter type is `Excel`.
|
|
10
|
+
- `I810364` - Fixed selection not persisting after updating records with `setRowData` following post cell edit in virtualization.
|
|
11
|
+
- `#F72695` - Fixed an issue where child records were not exported in remote data when `isCollapsedStatePersist` is set to false.
|
|
10
12
|
|
|
11
13
|
## 32.2.3 (2026-02-05)
|
|
12
14
|
|
|
@@ -238,7 +240,15 @@
|
|
|
238
240
|
|
|
239
241
|
- Expanding and Collapsing records is working fine when `pageSizeMode` is set as `All`.
|
|
240
242
|
- `expandAtLevel`, `collapseAtLevel`, `expandAll` and `collapseAll` methods are working fine when `pageSizeMode` is set as `All`.- `actionBegin`, `actionComplete` and `actionFailure` events are triggered properly.
|
|
241
|
-
- Additional parameters that are added using the `query` property of TreeGrid are passed to the server side when a parent record is expanded.##
|
|
243
|
+
- Additional parameters that are added using the `query` property of TreeGrid are passed to the server side when a parent record is expanded.## 32.2.4 (2026-02-11)
|
|
244
|
+
|
|
245
|
+
### Tree Grid
|
|
246
|
+
|
|
247
|
+
#### Bug Fixes
|
|
248
|
+
|
|
249
|
+
- `I805487` - Resolved an issue where data was not added correctly using the `addRecord` method when batch editing, persistence, and multiple selection were enabled.
|
|
250
|
+
|
|
251
|
+
## 19.1.54 (2021-03-30)
|
|
242
252
|
|
|
243
253
|
### Tree Grid
|
|
244
254
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@syncfusion/ej2-angular-treegrid",
|
|
3
|
-
"version": "32.2.
|
|
3
|
+
"version": "32.2.7",
|
|
4
4
|
"description": "Essential JS 2 TreeGrid Component for Angular",
|
|
5
5
|
"author": "Syncfusion Inc.",
|
|
6
6
|
"license": "SEE LICENSE IN license",
|
|
7
7
|
"schematics": "./schematics/collection.json",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@syncfusion/ej2-base": "~32.2.
|
|
9
|
+
"@syncfusion/ej2-base": "~32.2.6",
|
|
10
10
|
"@syncfusion/ej2-angular-base": "~32.2.3",
|
|
11
|
-
"@syncfusion/ej2-treegrid": "32.2.
|
|
11
|
+
"@syncfusion/ej2-treegrid": "32.2.7"
|
|
12
12
|
},
|
|
13
13
|
"keywords": [
|
|
14
14
|
"angular",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.pkgName = '@syncfusion/ej2-angular-treegrid';
|
|
4
|
-
exports.pkgVer = '^32.2.
|
|
4
|
+
exports.pkgVer = '^32.2.7';
|
|
5
5
|
exports.moduleName = 'TreeGridModule';
|
|
6
|
-
exports.themeVer = '~32.2.
|
|
6
|
+
exports.themeVer = '~32.2.7';
|