@syncfusion/ej2-treegrid
Advanced tools
Comparing version 17.3.28 to 17.3.29
@@ -9,2 +9,10 @@ # Changelog | ||
- `#254018` - RowDrop event triggers properly when we drop the row outside of the TreeGrid. | ||
## 17.3.28 (2019-11-19) | ||
### TreeGrid | ||
#### Bug Fixes | ||
- `#F148459` - Header Checkbox display properly when we hide and show the columns using hideColumns and showColumns method. | ||
@@ -11,0 +19,0 @@ - `#I247045` - Row Drag and Drop works fine when text wrap is enabled. |
/*! | ||
* filename: index.d.ts | ||
* version : 17.3.28 | ||
* version : 17.3.29 | ||
* Copyright Syncfusion Inc. 2001 - 2019. 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@17.3.27", | ||
"_id": "@syncfusion/ej2-treegrid@17.3.28", | ||
"_inBundle": false, | ||
"_integrity": "sha512-9Pb5g+FM5eem9OHuqzDr/D0M7vRIaHoKriKcuX4o2zda9g53zsXYED0QLHM6KPd/5BiQAgpzOm15BN42MQYDyw==", | ||
"_integrity": "sha512-LZIe72KfqG7JRpA5Hqogk6Kj31Cvow0HMhApwic9ETL39uOlMMXKWBpMqSP4ga3mQZUPHM1Eo0Ty9pRVLWqDwQ==", | ||
"_location": "/@syncfusion/ej2-treegrid", | ||
@@ -27,4 +27,4 @@ "_phantomChildren": {}, | ||
], | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-17.3.27.tgz", | ||
"_shasum": "4fba35a0fd17f09efa40baa47869ec4e493400b6", | ||
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix/@syncfusion/ej2-treegrid/-/ej2-treegrid-17.3.28.tgz", | ||
"_shasum": "a64dababd19e1985774d498d6c52d58eda6ad07d", | ||
"_spec": "@syncfusion/ej2-treegrid@*", | ||
@@ -42,4 +42,4 @@ "_where": "/jenkins/workspace/ation_hotfix_17.2.0.34_Vol2-DDPJ6C2YEWTWLLKKNA7AG2JBE6DYTCTNGMHGORWGAYAVCL6L7OLQ/packages/included", | ||
"@syncfusion/ej2-data": "~17.3.27", | ||
"@syncfusion/ej2-grids": "~17.3.28", | ||
"@syncfusion/ej2-popups": "~17.3.27" | ||
"@syncfusion/ej2-grids": "~17.3.29", | ||
"@syncfusion/ej2-popups": "~17.3.29" | ||
}, | ||
@@ -65,4 +65,4 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "17.3.28", | ||
"version": "17.3.29", | ||
"sideEffects": false | ||
} |
@@ -182,2 +182,5 @@ import { getObject, Filter as GridFilter, Grid } from '@syncfusion/ej2-grids'; | ||
} | ||
if ((hierarchyMode === 'Child' || hierarchyMode === 'Both') && childRec.length) { | ||
isExist = true; | ||
} | ||
} | ||
@@ -184,0 +187,0 @@ return isExist; |
@@ -460,5 +460,5 @@ import { Grid, RowDD as GridDragDrop, parentsUntil } from '@syncfusion/ej2-grids'; | ||
if (!tObj.rowDropSettings.targetID) { | ||
tObj.trigger(events.rowDrop, args); | ||
if (parentsUntil(args.target, 'e-content')) { | ||
setValue('dropPosition', this.dropPosition, args); | ||
tObj.trigger(events.rowDrop, args); | ||
if (!args.cancel) { | ||
@@ -465,0 +465,0 @@ this.dropRows(args); |
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
4262860
37686