@syncfusion/ej2-treegrid
Advanced tools
Comparing version 18.1.57 to 18.1.59
@@ -9,2 +9,11 @@ # Changelog | ||
- `#F154641` - Initial set of record rendered properly while using virtual scroll. | ||
## 18.1.57 (2020-06-16) | ||
### TreeGrid | ||
#### Bug Fixes | ||
- `#279109` - Checkbox checked properly for child records in remote data. | ||
- `#277364`, `#279732` - Checkbox with `allowRowDragAndDrop` property rendered properly after editing and cancelling in cell edit mode. | ||
@@ -11,0 +20,0 @@ |
/*! | ||
* filename: index.d.ts | ||
* version : 18.1.57 | ||
* version : 18.1.59 | ||
* 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.56", | ||
"_id": "@syncfusion/ej2-treegrid@18.1.57", | ||
"_inBundle": false, | ||
"_integrity": "sha512-eAryjpWaTERtNJ21hfbPO0G34QTKwOEdlbSJMi2/uRHpOXLg4npxdgXUJIdUDAYogVTou30Cb2MC/QQJCVAKyw==", | ||
"_integrity": "sha512-7/XfNUy2tFT2AW8qd/6Ax14kxNahd84coT6e7xRgSDyBu7PnLho/1CUM4hPglBmi4D/4j5CJ0cGaSVgTxEitOg==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.1.56.tgz", | ||
"_shasum": "daaa3814537d37facba71d9f6adbdb9a9c8a0c43", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.1.57.tgz", | ||
"_shasum": "8f03e769e8dbe482a56f202d76bfb0d1ed8c9ab8", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -42,3 +42,3 @@ "_where": "/jenkins/workspace/automation_release_18.1.0.1-52JLNOGRCDHXRVQM3W564VPLFCPHWUYDYU3I3DVRABSR7F6AIFYQ/packages/included", | ||
"@syncfusion/ej2-data": "~18.1.55", | ||
"@syncfusion/ej2-grids": "~18.1.57", | ||
"@syncfusion/ej2-grids": "~18.1.59", | ||
"@syncfusion/ej2-popups": "~18.1.57" | ||
@@ -65,4 +65,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "18.1.57", | ||
"version": "18.1.59", | ||
"sideEffects": false | ||
} |
@@ -292,2 +292,3 @@ import { extend, isNullOrUndefined, setValue, getValue, isBlazor, addClass, removeClass } from '@syncfusion/ej2-base'; | ||
result[r].uniqueID = getUid(_this.parent.element.id + '_data_'); | ||
result[r].checkboxState = 'uncheck'; | ||
setValue('uniqueIDCollection.' + result[r].uniqueID, result[r], _this.parent); | ||
@@ -294,0 +295,0 @@ // delete result[r].parentItem.childRecords; |
@@ -166,3 +166,8 @@ var __extends = (this && this.__extends) || (function () { | ||
this.endIndex = lastIndex; | ||
this.translateY = this.getTranslateY(scrollArgs.offset.top, content.getBoundingClientRect().height); | ||
if (scrollArgs.offset.top > (this.parent.getRowHeight() * this.totalRecords)) { | ||
this.translateY = this.getTranslateY(scrollArgs.offset.top, content.getBoundingClientRect().height); | ||
} | ||
else { | ||
this.translateY = scrollArgs.offset.top; | ||
} | ||
} | ||
@@ -169,0 +174,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
5199618