@syncfusion/ej2-treegrid 23.2.7 → 24.1.44

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
@@ -2,51 +2,7 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
- ### TreeGrid
6
-
7
- #### Bug Fixes
8
-
9
- - `#I517211` - Exception throws on dynamically changing the stacked column and normal column.
10
- - `#FB48417` - Fixed the issue where a Script Error was thrown when searching for an invalid value and when rendering empty data.
11
-
12
- ## 23.2.6 (2023-11-28)
13
-
14
- ### TreeGrid
15
-
16
- #### Bug Fixes
17
-
18
- - `#I522828` - Fixed an issue where the Excel export datasource properties were not being applied correctly for remote data binding.
19
- - `#I523652` - Fixed an issue where the cell saving functionality was not working correctly after pressing enter or update in the treegrid.
20
-
21
- ## 23.2.4 (2023-11-20)
22
-
23
- ### TreeGrid
24
-
25
- #### Bug Fixes
26
-
27
- - `#I511389` - Fixed an issue where the expand all/collapse all functionality was not working correctly when the `EnableCollapseAll` property enabled in the virtualization feature.
28
- - `#I507506` - Fixed an issue where the template was not rendered when using frozen columns in a treegrid.
29
- - `#I512641` - Fixed the issue where the header checkbox was not functioning correctly in the checkbox column.
30
- - `#I520059` - Fixed an issue where the clipboard functionality (Copy/Paste) on excel would paste hidden column values when selecting a row.
31
-
32
- ## 23.1.43 (2023-10-31)
33
-
34
- ### TreeGrid
35
-
36
- #### Bug Fixes
37
-
38
- - `#I499002` - Fixed a bug where a script error would occur when editing and focusing out on a record.
39
- - `#I502660` - Fixed issue with external filter not working properly when using virtualization feature.
40
-
41
- ## 23.1.39 (2023-10-04)
42
-
43
- ### Tree Grid
44
-
45
- #### Bug Fixes
46
-
47
- - `#I502102` - Fixed the issue where the drop index was displaying as `Nan` when dropping a row in white space.
48
-
49
- ## 23.1.36 (2023-09-15)
5
+ ## 24.1.41 (2023-12-18)
50
6
 
51
7
  ### Tree Grid
52
8
 
@@ -56,18 +12,23 @@
56
12
 
57
13
  - Added support for the new `fixed` mode within the `freeze` property of column settings. When a column is set as `fixed`, it will stay within the viewport during horizontal scrolling, enhancing the user experience with improved visibility and efficiency.
58
14
 
59
- #### Breaking changes
60
-
61
- - Optimized the frozen columns feature in Tree Grid and thus changed the dom structure of tree grid from two table to single table architecture. Also, the following methods have been deprecated, and it's recommended to use the following alternatives instead.
15
+ #### Breaking Changes
62
16
 
63
- Deprecated Methods | Previous | Current | Suggested Alternative Methods
64
- --- | --- | --- | ---
65
- | `getMoavableRows` | This method returns only the movable table rows `(tr's)`. | This method will return all table rows `(tr's)` of the entire table. The movable cells within the tr element can be selected using the `e-unfreeze` class. | `getRows()` |
66
- `getFrozenRightRows()` | This method returns only the table rows `(tr's)` from the freeze right table. | This method will return all the rows `(tr’s)` of the entire table. The frozen right cells can be selected using the `e-rightfreeze` class. | `getRows()`
67
- `getMovableRowByIndex()` <br> `getFrozenRightRowByIndex()` | * `getMovableRowByIndex` - select a movable row <br> *`getFrozenRightRowByIndex` - select a right freeze row. | This method will return the table row `(tr)` based on the given index. Additionally, class names for table cells `(td's)` have been separated as follows: <br> * Left-Freeze: `e-leftfreeze` <br> * Movable: `e-unfreeze` <br> | `getRowByIndex()`
68
- `getMovableCellFromIndex()` <br> `getFrozenRightCellFromIndex()` | * `getMovableCellFromIndex()` - select a particular cell in the movable table. <br> *`getFrozenRightCellFromIndex()` - select a particular cell in the right freeze table.|No change| `getCellFromIndex()`
69
- `getMovableDataRows()` <br> `getFrozenRightDataRows()` | These methods return the viewport data rows for the freeze, movable tables separately. | This method, will return the entire viewport data rows.| `getDataRows()`
70
- `getMovableColumnHeaderByIndex()` <br> `getFrozenRightColumnHeaderByIndex()` <br> `getFrozenLeftColumnHeaderByIndex()` | These methods select the movable, right freeze, and left freeze headers from the table separately. | No change | `getColumnHeaderByIndex`()
17
+ - Optimized the frozen columns feature in Tree Grid and thus changed the dom structure of tree grid from two table to single table architecture. Also, the following methods have been removed, and it's recommended to use the following alternatives instead.
18
+
19
+ | Removed methods | Suggested to use alternative methods |
20
+ |----------|----------|
21
+ | `getMoavableRows`, `getFrozenRightRows` | `getRows` |
22
+ | `getMovableRowByIndex`, `getFrozenRowByIndex`, `getFrozenRightRowByIndex` | `getRowByIndex` |
23
+ | `getMovableCellFromIndex`, `getFrozenRightCellFromIndex` | `getCellFromIndex` |
24
+ | `getMovableDataRows`, `getFrozenRightDataRows`, `getFrozenDataRows` | `getDataRows` |
25
+ | `getAllMovableDataRows`, `getAllFrozenDataRows`, `getAllFrozenRightDataRows` | `getAllDataRows` |
26
+ | `getMovableColumnHeaderByIndex`, `getFrozenRightColumnHeaderByIndex`, `getFrozenLeftColumnHeaderByIndex` | `getColumnHeaderByIndex` |
27
+ | `getFrozenRightHeader`, `getMovableHeader` | `getHeaderContent` |
28
+ | `getFrozenRightRowsObject`, `getMovableRwsObject` | `getRowsObject` |
29
+ | `getFrozenRightHeaderTbody`, `getMovableHeaderTbody`, `getFrozenHeaderTbody` | `getContent().querySelector(‘tbody’)` |
30
+ | `getFrozenLeftContentTbody`, `getFrozenRightContentTbody`, `getMovableContentTbody` | `getHeaderContent().querySelector(‘tbody’)` |
31
+ | `getFrozenRightContent`, `getMovableContent` | `getContent` |
71
32
 
72
33
  ## 20.2.36 (2022-06-30)
73
34
 
package/README.md CHANGED
@@ -80,4 +80,4 @@ Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-contr
80
80
 
81
81
  See [LICENSE FILE](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/license?utm_source=npm&utm_campaign=grid) for more info.
82
82
 
83
- © Copyright 2023 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
83
+ © Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.