@syncfusion/ej2-treegrid
Advanced tools
Comparing version 18.4.31 to 18.4.33
@@ -9,2 +9,10 @@ # Changelog | ||
- `#308346` - `expandAll` and `collapseAll` works fine with Virtualization enabled. | ||
## 18.4.31 (2020-12-22) | ||
### TreeGrid | ||
#### Bug Fixes | ||
- `#301365`- Template rendering for the tree column works fine. | ||
@@ -11,0 +19,0 @@ - `#304800`- Exporting of data while using `RemoteSaveAdaptor` works fine. |
/*! | ||
* filename: index.d.ts | ||
* version : 18.4.31 | ||
* version : 18.4.33 | ||
* 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.4.30", | ||
"_id": "@syncfusion/ej2-treegrid@18.4.31", | ||
"_inBundle": false, | ||
"_integrity": "sha512-lZ0twH3xql+aRYi7pRj5iTuTbl7/jZZ5KuJZWHL2l4RZhqeIt8XxKumLfE1lkXux6apeo7FumNMS8z3KFxccTg==", | ||
"_integrity": "sha512-yrZ3j1drYtRDtwjXgrbOyPZmjMVCHF9iXMnOYEZuymDZucirFK56OF+tvJOMW2zYfkxeTFLfZS9lUvyEBU/ADA==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.4.30.tgz", | ||
"_shasum": "82479c2335b4a81ac60f1469fd0c4a2fdc706b7b", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-18.4.31.tgz", | ||
"_shasum": "802ab3ac322bd41aabf3cf0852a3c1a34d96f4e4", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -41,4 +41,4 @@ "_where": "/jenkins/workspace/automation_release_18.4.0.1-WOJ6QVY6EU5ONBWOYGQFKS2VU2UW7E67MOXUPKCE5AX7QQX7M5JQ/packages/included", | ||
"@syncfusion/ej2-base": "~18.4.31", | ||
"@syncfusion/ej2-data": "~18.4.30", | ||
"@syncfusion/ej2-grids": "~18.4.31", | ||
"@syncfusion/ej2-data": "~18.4.33", | ||
"@syncfusion/ej2-grids": "~18.4.33", | ||
"@syncfusion/ej2-popups": "~18.4.30" | ||
@@ -65,4 +65,4 @@ }, | ||
"typings": "index.d.ts", | ||
"version": "18.4.31", | ||
"version": "18.4.33", | ||
"sideEffects": false | ||
} |
@@ -77,4 +77,6 @@ import { isNullOrUndefined, extend, getValue, isBlazor } from '@syncfusion/ej2-base'; | ||
if (isBlazor()) { | ||
editedData.taskData[keys[j]] = editedData[keys[j]] | ||
= control.grid.currentViewData[i][keys[j]] = treeData[i][keys[j]]; | ||
var taskData = 'taskData'; | ||
editedData.taskData[keys[j]] | ||
= editedData[keys[j]] = control.grid.currentViewData[i][keys[j]] | ||
= control.grid.currentViewData[i][taskData][keys[j]] = treeData[i][keys[j]]; | ||
} | ||
@@ -324,3 +326,3 @@ else { | ||
data: record, cell: row.cells[index_2] ? row.cells[index_2] | ||
: movableRow.cells[index_2 - control.frozenColumns], | ||
: movableRow.cells[index_2 - control.getFrozenColumns()], | ||
column: control.grid.getColumns()[control.treeColumnIndex], | ||
@@ -327,0 +329,0 @@ requestType: action |
@@ -88,2 +88,3 @@ import { getObject, appendChildren } from '@syncfusion/ej2-grids'; | ||
var summaryRow = data.isSummaryRow; | ||
var frozenColumns = this.parent.getFrozenColumns(); | ||
if (!isNullOrUndefined(data.parentItem)) { | ||
@@ -152,12 +153,12 @@ index = data.parentItem.index; | ||
} | ||
if (this.parent.frozenColumns > this.parent.treeColumnIndex && this.parent.frozenColumns > 0 && | ||
grid.getColumnIndexByUid(args.column.uid) === this.parent.frozenColumns) { | ||
if (frozenColumns > this.parent.treeColumnIndex && frozenColumns > 0 && | ||
grid.getColumnIndexByUid(args.column.uid) === frozenColumns) { | ||
addClass([args.cell], 'e-gridrowindex' + index + 'level' + data.level); | ||
} | ||
else if (this.parent.frozenColumns < this.parent.treeColumnIndex && this.parent.frozenColumns > 0 && | ||
(grid.getColumnIndexByUid(args.column.uid) === this.parent.frozenColumns | ||
|| grid.getColumnIndexByUid(args.column.uid) === this.parent.frozenColumns - 1)) { | ||
else if (frozenColumns < this.parent.treeColumnIndex && frozenColumns > 0 && | ||
(grid.getColumnIndexByUid(args.column.uid) === frozenColumns | ||
|| grid.getColumnIndexByUid(args.column.uid) === frozenColumns - 1)) { | ||
addClass([args.cell], 'e-gridrowindex' + index + 'level' + data.level); | ||
} | ||
else if (this.parent.frozenColumns === this.parent.treeColumnIndex && this.parent.frozenColumns > 0 && | ||
else if (frozenColumns === this.parent.treeColumnIndex && frozenColumns > 0 && | ||
grid.getColumnIndexByUid(args.column.uid) === this.parent.treeColumnIndex - 1) { | ||
@@ -164,0 +165,0 @@ addClass([args.cell], 'e-gridrowindex' + index + 'level' + data.level); |
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
5668245
47001