@syncfusion/ej2-treegrid
Advanced tools
Comparing version 20.2.43 to 20.2.44
@@ -5,2 +5,8 @@ # Changelog | ||
### Tree Grid | ||
#### Bug fixes | ||
- `#I393339` - Resolved script error thrown When hierarchy mode is Both and performing an initial search in case of virtualization enabled. | ||
## 20.2.40 (2022-07-26) | ||
@@ -7,0 +13,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 20.2.43 | ||
* version : 20.2.44 | ||
* 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@20.2.40", | ||
"_id": "@syncfusion/ej2-treegrid@20.2.43", | ||
"_inBundle": false, | ||
"_integrity": "sha512-h+5jewn6mztwblkIv0nY4K8zCtNqJC5D3UGDELOXnJ6Kw+Z3ocVnqcFFaW1wx1Y0f09Z+kYpbnJHL6nRiPpCUg==", | ||
"_integrity": "sha512-All3AvUDevK49U7XAKoSUYwrSfbkE5eqyYMPppHtd+60ksQ35EmGVPppVPvI035s+PrDJOJvztD5M41JtjkEgw==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-20.2.40.tgz", | ||
"_shasum": "ad8625609f98d44dd61b732daca091111c3970f3", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-treegrid/-/ej2-treegrid-20.2.43.tgz", | ||
"_shasum": "ce98748e645ea015021c79b70828538d8e5e0107", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -42,3 +42,3 @@ "_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included", | ||
"@syncfusion/ej2-data": "~20.2.43", | ||
"@syncfusion/ej2-grids": "~20.2.43", | ||
"@syncfusion/ej2-grids": "~20.2.44", | ||
"@syncfusion/ej2-popups": "~20.2.43" | ||
@@ -65,4 +65,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "20.2.43", | ||
"version": "20.2.44", | ||
"sideEffects": false | ||
} |
@@ -244,3 +244,4 @@ import { isNullOrUndefined, extend, setValue, getValue, merge } from '@syncfusion/ej2-base'; | ||
this.addRowIndex = this.parent.editModule['addRowIndex']; | ||
this.addRowRecord = this.batchRecords.length ? this.batchRecords[this.selectedIndex] : this.parent.getCurrentViewRecords()[this.selectedIndex]; | ||
this.addRowRecord = this.batchRecords.length ? this.batchRecords[this.selectedIndex] | ||
: this.parent.getCurrentViewRecords()[this.selectedIndex]; | ||
} | ||
@@ -247,0 +248,0 @@ else { |
@@ -158,3 +158,4 @@ import { getObject, Filter as GridFilter, Grid } from '@syncfusion/ej2-grids'; | ||
else { | ||
if (parent['expanded'] === false && this.parent.getVisibleRecords().indexOf(record) === -1 && isNullOrUndefined(this.parent['dataResults']['action'])) { | ||
if ((!this.parent.enableCollapseAll || !this.parent.initialRender && isNullOrUndefined(this.parent['dataResults']['result'])) | ||
&& parent['expanded'] === false && this.parent.getVisibleRecords().indexOf(record) === -1) { | ||
this.parent.expandRow(this.parent.getRows()[parent['index']], parent); | ||
@@ -161,0 +162,0 @@ } |
@@ -124,3 +124,3 @@ import { getObject } from '@syncfusion/ej2-grids'; | ||
if (!isNullOrUndefined(records.childRecords)) { | ||
var childRecords = records.childRecords.filter(function (items) { return !items.isSummaryRow; }); | ||
var childRecords = records.childRecords.filter(function (item) { return !item.isSummaryRow; }); | ||
var keys = Object.keys(childRecords); | ||
@@ -127,0 +127,0 @@ for (var i = 0, len = keys.length; i < len; i++) { |
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
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
7095482
62491