@syncfusion/ej2-treegrid
Advanced tools
Comparing version 18.1.45 to 18.1.48
@@ -9,2 +9,11 @@ # Changelog | ||
- `F153495` - Sorting after editing is working fine with cell edit mode. | ||
- `#273309` - Editing the zeroth level added record works fine in Batch mode. | ||
## 18.1.45 (2020-04-21) | ||
### TreeGrid | ||
#### Bug Fixes | ||
- `#272026` - `updateRow` method works fine for updating treegrid data source. | ||
@@ -11,0 +20,0 @@ - `#272616` - In editing, add operation works fine in empty data source. |
/*! | ||
* filename: index.d.ts | ||
* version : 18.1.45 | ||
* version : 18.1.48 | ||
* 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@18.1.43", | ||
"_id": "@syncfusion/ej2-treegrid@18.1.45", | ||
"_inBundle": false, | ||
"_integrity": "sha512-VJFYyjsoFXAeqYIR6zaiMvSLJUwrf6iPz6hMGeJqN/17Y0HdntvmgGJv6rjSDlRgd0sCd7PhZfzOXGp+ptCOrw==", | ||
"_integrity": "sha512-zXR+lydesMgYXTMqfDu58wfPEIF05Gh0DL8keZKbLq/NIqjpIwEs7mKm6F0m/NWALh493bWhwdsE8ufoUkErjg==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.1.43.tgz", | ||
"_shasum": "ebc36f04af535e6511c1aa1881c3d40d0e106bab", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.1.45.tgz", | ||
"_shasum": "b4841f4d4452465a08b6918850561fdbee9eb537", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -42,4 +42,4 @@ "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included", | ||
"@syncfusion/ej2-data": "~18.1.43", | ||
"@syncfusion/ej2-grids": "~18.1.45", | ||
"@syncfusion/ej2-popups": "~18.1.45" | ||
"@syncfusion/ej2-grids": "~18.1.48", | ||
"@syncfusion/ej2-popups": "~18.1.46" | ||
}, | ||
@@ -65,4 +65,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "18.1.45", | ||
"version": "18.1.48", | ||
"sideEffects": false | ||
} |
@@ -191,4 +191,3 @@ import { extend, isNullOrUndefined, setValue, getValue, isBlazor, addClass, removeClass } from '@syncfusion/ej2-base'; | ||
for (var rec = 0; rec < records.length; rec++) { | ||
if ((records[rec][this.parent.hasChildMapping] || this.parentItems.indexOf(records[rec][this.parent.idMapping]) !== -1) | ||
&& (isNullOrUndefined(records[rec].index))) { | ||
if (isNullOrUndefined(records[rec].index)) { | ||
records[rec].taskData = extend({}, records[rec]); | ||
@@ -199,3 +198,5 @@ records[rec].uniqueID = getUid(this.parent.element.id + '_data_'); | ||
records[rec].index = Math.ceil(Math.random() * 1000); | ||
records[rec].hasChildRecords = true; | ||
if ((records[rec][this.parent.hasChildMapping] || this.parentItems.indexOf(records[rec][this.parent.idMapping]) !== -1)) { | ||
records[rec].hasChildRecords = true; | ||
} | ||
records[rec].checkboxState = 'uncheck'; | ||
@@ -202,0 +203,0 @@ } |
@@ -1099,2 +1099,3 @@ import { Component, ModuleDeclaration } from '@syncfusion/ej2-base'; | ||
private extendedGridEditEvents; | ||
private extendedGridBatchEvents; | ||
private updateRowTemplate; | ||
@@ -1101,0 +1102,0 @@ private bindedDataSource; |
@@ -166,3 +166,3 @@ var __extends = (this && this.__extends) || (function () { | ||
this.endIndex = lastIndex; | ||
this.translateY = scrollArgs.offset.top; | ||
this.translateY = this.getTranslateY(scrollArgs.offset.top, content.getBoundingClientRect().height); | ||
} | ||
@@ -169,0 +169,0 @@ if ((downScroll && (scrollArgs.offset.top < (this.parent.getRowHeight() * this.totalRecords))) |
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
5101420
43649