@syncfusion/ej2-treegrid
Advanced tools
Comparing version 21.1.37 to 21.1.38
@@ -5,2 +5,12 @@ # Changelog | ||
### Tree Grid | ||
#### Bug Fixes | ||
- `#I407372`, `#I449067`, `#I424805` - Fixed console error when dragging and dropping a record and then pressing the tab key. | ||
- `#I441661` - Fixed incorrect checkbox selection update after selecting a record and collapsing in checkboxOnly mode. | ||
- `#I449191` - Fixed incorrect cell index selection in the getSelectedRowCellIndexes method when collapsing a record. | ||
- `#I442710` - Resolved issue of row dropping at the bottom segment (with the last record) not working properly. | ||
- `#I444506` - Resolved issue of last row border not being added when reordering a row to the last index. | ||
## 21.1.35 (2023-03-23) | ||
@@ -10,6 +20,6 @@ | ||
#### Features | ||
#### Breaking Changes | ||
- Provided support for inline editing with virtualization enabled. Please find the demo [here](https://ej2.syncfusion.com/demos/#/bootstrap5/tree-grid/virtual-scrolling.html). | ||
- `#I323425`, `#I332700`, `#I344742`, `#I375307` - Provided support for frozen column with virtualization enabled. | ||
- Unnecessary role attributes for Tree Grid row cell and header elements have been removed to enhance accessibility standards. | ||
- The `td` element for `e-detailcell` in [detail element](https://ej2.syncfusion.com/documentation/treegrid/row/detail-template/) has been only changed from a `td` element to the `th` element to enhance accessibility standards. | ||
@@ -16,0 +26,0 @@ ## 20.2.36 (2022-06-30) |
/*! | ||
* filename: index.d.ts | ||
* version : 21.1.37 | ||
* version : 21.1.38 | ||
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved. | ||
@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license. |
{ | ||
"_from": "@syncfusion/ej2-treegrid@*", | ||
"_id": "@syncfusion/ej2-treegrid@21.1.35", | ||
"_id": "@syncfusion/ej2-treegrid@21.1.37", | ||
"_inBundle": false, | ||
"_integrity": "sha512-ouihoglEHJP/Rhe+MH3bJ7w4cGwaIWgWjNHU0oYD6Rr6n2K8DVYEpHS1oW4zVFzHCzEATAuuETu/6kPP5q9TCg==", | ||
"_integrity": "sha512-KcFFYzCZtqS5yaixGRtSjaScyvmUZY/3fg3cPrBbHEDte8vAGk+qrGY1PNYS29TDZFeu5aIhYt95HNR/VGOO8Q==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-21.1.35.tgz", | ||
"_shasum": "6c352cdb1bd29fff5724b93d39eeadfa68765d2a", | ||
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-21.1.37.tgz", | ||
"_shasum": "d761d0f0b6ef1c633daafc06f62d46416a8ce26f", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -40,5 +40,5 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included", | ||
"dependencies": { | ||
"@syncfusion/ej2-base": "~21.1.37", | ||
"@syncfusion/ej2-data": "~21.1.37", | ||
"@syncfusion/ej2-grids": "~21.1.37", | ||
"@syncfusion/ej2-base": "~21.1.38", | ||
"@syncfusion/ej2-data": "~21.1.38", | ||
"@syncfusion/ej2-grids": "~21.1.38", | ||
"@syncfusion/ej2-popups": "~21.1.37" | ||
@@ -71,4 +71,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "21.1.37", | ||
"version": "21.1.38", | ||
"sideEffects": false | ||
} |
@@ -43,2 +43,4 @@ import { getObject, appendChildren } from '@syncfusion/ej2-grids'; | ||
args.row.style.display = 'none'; | ||
var rowsObj = this.parent.grid.getRowsObject(); | ||
rowsObj.filter(function (e) { return e.uid === args.row.getAttribute('data-uid'); })[0].visible = false; | ||
} | ||
@@ -72,2 +74,11 @@ } | ||
} | ||
var draggedRecord = 'draggedRecord'; | ||
if (!isNullOrUndefined(this.parent.rowDragAndDropModule) && !isNullOrUndefined(this.parent.rowDragAndDropModule["" + draggedRecord]) | ||
&& this.parent.getContentTable().scrollHeight <= this.parent.getContent().clientHeight) { | ||
var lastRowBorder = 'lastRowBorder'; | ||
var lastVisualData = this.parent.getVisibleRecords()[this.parent.getVisibleRecords().length - 1]; | ||
if (lastVisualData.uniqueID === args.data.uniqueID && !isNullOrUndefined(args.row) && !args.row.cells[0].classList.contains('e-lastrowcell')) { | ||
this.parent["" + lastRowBorder](args.row, true); | ||
} | ||
} | ||
this.parent.trigger(events.rowDataBound, args); | ||
@@ -74,0 +85,0 @@ }; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
8271533
65645