@syncfusion/ej2-treegrid
Advanced tools
Comparing version 19.4.55 to 19.4.56
@@ -5,2 +5,16 @@ # Changelog | ||
### Tree Grid | ||
#### Bug Fixes | ||
- `#I367939` - Resolved sorting with descending order doesn't work in case of SortComparer with uid property enabled. | ||
## 19.4.55 (2022-03-08) | ||
### Tree Grid | ||
#### Bug Fixes | ||
- `#I363210` - Throws script error while using editCell method and press tab key in case of virtualization enabled has been fixed. | ||
## 19.4.54 (2022-03-01) | ||
@@ -7,0 +21,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 19.4.55 | ||
* version : 19.4.56 | ||
* 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@19.4.54", | ||
"_id": "@syncfusion/ej2-treegrid@19.4.55", | ||
"_inBundle": false, | ||
"_integrity": "sha512-+cbivNhFwEkOeKMKpnhws6wbaS1tSfAVR1kChJUSvfYQlTXX9RNubsPkYO/V15aYqN4xmlSzfRM88Qh/PlgKzg==", | ||
"_integrity": "sha512-f5xJV2acBAMJnQ/C9b+HxofLqJ3odAXUN/kaRyqz+3sMlYdAaIW1f77i7Z8FUY7e9Gl5M5BgPtTr2WQXAH/mmQ==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-19.4.54.tgz", | ||
"_shasum": "1d70bea58ea068fc89e37af3742f494d46f454a9", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-19.4.55.tgz", | ||
"_shasum": "e711adbf22a3859e37b6d823c0914732c323754d", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -42,3 +42,3 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"@syncfusion/ej2-data": "~19.4.54", | ||
"@syncfusion/ej2-grids": "~19.4.55", | ||
"@syncfusion/ej2-grids": "~19.4.56", | ||
"@syncfusion/ej2-popups": "~19.4.53" | ||
@@ -65,4 +65,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "19.4.55", | ||
"version": "19.4.56", | ||
"sideEffects": false | ||
} |
@@ -278,3 +278,3 @@ import { Grid, Edit as GridEdit, getUid, getObject, resetRowIndex } from '@syncfusion/ej2-grids'; | ||
delete args[promise]; | ||
if (this.parent.enableVirtualization && !isNullOrUndefined(this.prevAriaRowIndex)) { | ||
if (this.parent.enableVirtualization && !isNullOrUndefined(this.prevAriaRowIndex) && this.prevAriaRowIndex !== '-1') { | ||
args.row.setAttribute('aria-rowindex', this.prevAriaRowIndex); | ||
@@ -281,0 +281,0 @@ this.prevAriaRowIndex = undefined; |
@@ -268,3 +268,4 @@ import { Grid, RowDD as GridDragDrop, parentsUntil } from '@syncfusion/ej2-grids'; | ||
if (tempDataSource && (!isNullOrUndefined(droppedRecord) && !droppedRecord.parentItem) && !isNullOrUndefined(droppedRecord.taskData)) { | ||
for (var i = 0; i < Object.keys(tempDataSource).length; i++) { | ||
var keys = Object.keys(tempDataSource); | ||
for (var i = 0; i < keys.length; i++) { | ||
if (tempDataSource[i][this.parent.childMapping] === droppedRecord.taskData[this.parent.childMapping]) { | ||
@@ -271,0 +272,0 @@ idx = i; |
@@ -130,3 +130,4 @@ import { extend, isNullOrUndefined, setValue, getValue, addClass, removeClass } from '@syncfusion/ej2-base'; | ||
else { | ||
for (var i = 0; i < Object.keys(data).length; i++) { | ||
var keys = Object.keys(data); | ||
for (var i = 0; i < keys.length; i++) { | ||
var tempData = data[i]; | ||
@@ -371,3 +372,4 @@ this.hierarchyData.push(extend({}, tempData)); | ||
var treeGridData = []; | ||
for (var i = 0, len = Object.keys(data).length; i < len; i++) { | ||
var keys = Object.keys(data); | ||
for (var i = 0, len = keys.length; i < len; i++) { | ||
var currentData = extend({}, data[i]); | ||
@@ -374,0 +376,0 @@ currentData.taskData = data[i]; |
@@ -125,3 +125,4 @@ import { getObject } from '@syncfusion/ej2-grids'; | ||
var childRecords = records.childRecords; | ||
for (var i = 0, len = Object.keys(childRecords).length; i < len; i++) { | ||
var keys = Object.keys(childRecords); | ||
for (var i = 0, len = keys.length; i < len; i++) { | ||
datas.push(childRecords[i]); | ||
@@ -128,0 +129,0 @@ if (childRecords[i].hasChildRecords || (!isNullOrUndefined(childRecords[i].childRecords) && |
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
6710616
58720