@syncfusion/ej2-treegrid 32.2.4 → 32.2.9-1987473
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +243 -262
- package/README.md +92 -92
- package/dist/ej2-treegrid.umd.min.js +1 -10
- package/dist/ej2-treegrid.umd.min.js.map +1 -1
- package/dist/es6/ej2-treegrid.es2015.js +164 -108
- package/dist/es6/ej2-treegrid.es2015.js.map +1 -1
- package/dist/es6/ej2-treegrid.es5.js +462 -404
- package/dist/es6/ej2-treegrid.es5.js.map +1 -1
- package/license +9 -9
- package/package.json +44 -44
- package/src/treegrid/actions/clipboard.js +13 -13
- package/src/treegrid/actions/excel-export.js +35 -5
- package/src/treegrid/actions/logger.js +13 -13
- package/src/treegrid/actions/pdf-export.d.ts +1 -0
- package/src/treegrid/actions/pdf-export.js +32 -1
- package/src/treegrid/actions/sort.d.ts +1 -0
- package/src/treegrid/actions/sort.js +6 -0
- package/src/treegrid/actions/virtual-scroll.js +18 -14
- package/src/treegrid/base/treegrid-model.d.ts +950 -950
- package/src/treegrid/base/treegrid.d.ts +18 -18
- package/src/treegrid/base/treegrid.js +31 -47
- package/src/treegrid/models/column-chooser-settings-model.d.ts +41 -41
- package/src/treegrid/models/column-chooser-settings.js +19 -19
- package/src/treegrid/models/column-model.d.ts +6 -6
- package/src/treegrid/models/column.js +19 -19
- package/src/treegrid/models/edit-settings-model.d.ts +71 -71
- package/src/treegrid/models/edit-settings.js +19 -19
- package/src/treegrid/models/filter-settings-model.d.ts +198 -198
- package/src/treegrid/models/filter-settings.js +19 -19
- package/src/treegrid/models/infinite-scroll-settings-model.d.ts +16 -16
- package/src/treegrid/models/infinite-scroll-settings.js +19 -19
- package/src/treegrid/models/loading-indicator.js +19 -19
- package/src/treegrid/models/page-settings-model.d.ts +43 -43
- package/src/treegrid/models/page-settings.js +19 -19
- package/src/treegrid/models/rowdrop-settings-model.d.ts +6 -6
- package/src/treegrid/models/rowdrop-settings.js +19 -19
- package/src/treegrid/models/search-settings-model.d.ts +62 -62
- package/src/treegrid/models/search-settings.js +19 -19
- package/src/treegrid/models/selection-settings-model.d.ts +55 -55
- package/src/treegrid/models/selection-settings.js +19 -19
- package/src/treegrid/models/sort-settings-model.d.ts +27 -27
- package/src/treegrid/models/sort-settings.js +19 -19
- package/src/treegrid/models/summary-model.d.ts +63 -63
- package/src/treegrid/models/summary.js +19 -19
- package/src/treegrid/models/textwrap-settings-model.d.ts +12 -12
- package/src/treegrid/models/textwrap-settings.js +19 -19
- package/src/treegrid/renderer/virtual-row-model-generator.js +13 -13
- package/src/treegrid/renderer/virtual-tree-content-render.js +16 -13
- package/styles/treegrid/_all.bds.scss +2 -2
- package/styles/treegrid/_all.bootstrap-dark.scss +2 -2
- package/styles/treegrid/_all.bootstrap.scss +2 -2
- package/styles/treegrid/_all.bootstrap4.scss +2 -2
- package/styles/treegrid/_all.bootstrap5-dark.scss +2 -2
- package/styles/treegrid/_all.bootstrap5.3.scss +2 -2
- package/styles/treegrid/_all.bootstrap5.scss +2 -2
- package/styles/treegrid/_all.fabric-dark.scss +2 -2
- package/styles/treegrid/_all.fabric.scss +2 -2
- package/styles/treegrid/_all.fluent-dark.scss +2 -2
- package/styles/treegrid/_all.fluent.scss +2 -2
- package/styles/treegrid/_all.fluent2.scss +2 -2
- package/styles/treegrid/_all.highcontrast-light.scss +2 -2
- package/styles/treegrid/_all.highcontrast.scss +2 -2
- package/styles/treegrid/_all.material-dark.scss +2 -2
- package/styles/treegrid/_all.material.scss +2 -2
- package/styles/treegrid/_all.material3-dark.scss +2 -2
- package/styles/treegrid/_all.material3.scss +2 -2
- package/styles/treegrid/_all.scss +2 -2
- package/styles/treegrid/_all.tailwind-dark.scss +2 -2
- package/styles/treegrid/_all.tailwind.scss +2 -2
- package/styles/treegrid/_all.tailwind3.scss +2 -2
- package/styles/treegrid/_bds-definition.scss +26 -26
- package/styles/treegrid/_bigger.bds.scss +3 -3
- package/styles/treegrid/_bigger.bootstrap-dark.scss +3 -3
- package/styles/treegrid/_bigger.bootstrap.scss +3 -3
- package/styles/treegrid/_bigger.bootstrap4.scss +3 -3
- package/styles/treegrid/_bigger.bootstrap5-dark.scss +3 -3
- package/styles/treegrid/_bigger.bootstrap5.3.scss +3 -3
- package/styles/treegrid/_bigger.bootstrap5.scss +3 -3
- package/styles/treegrid/_bigger.fabric-dark.scss +3 -3
- package/styles/treegrid/_bigger.fabric.scss +3 -3
- package/styles/treegrid/_bigger.fluent-dark.scss +3 -3
- package/styles/treegrid/_bigger.fluent.scss +3 -3
- package/styles/treegrid/_bigger.fluent2.scss +3 -3
- package/styles/treegrid/_bigger.highcontrast-light.scss +3 -3
- package/styles/treegrid/_bigger.highcontrast.scss +3 -3
- package/styles/treegrid/_bigger.material-dark.scss +3 -3
- package/styles/treegrid/_bigger.material.scss +3 -3
- package/styles/treegrid/_bigger.material3-dark.scss +3 -3
- package/styles/treegrid/_bigger.material3.scss +3 -3
- package/styles/treegrid/_bigger.scss +67 -67
- package/styles/treegrid/_bigger.tailwind-dark.scss +3 -3
- package/styles/treegrid/_bigger.tailwind.scss +3 -3
- package/styles/treegrid/_bigger.tailwind3.scss +3 -3
- package/styles/treegrid/_bootstrap-dark-definition.scss +31 -31
- package/styles/treegrid/_bootstrap-definition.scss +31 -31
- package/styles/treegrid/_bootstrap4-definition.scss +31 -31
- package/styles/treegrid/_bootstrap5-dark-definition.scss +26 -26
- package/styles/treegrid/_bootstrap5-definition.scss +26 -26
- package/styles/treegrid/_bootstrap5.3-definition.scss +26 -26
- package/styles/treegrid/_fabric-dark-definition.scss +31 -31
- package/styles/treegrid/_fabric-definition.scss +31 -31
- package/styles/treegrid/_fluent-dark-definition.scss +27 -27
- package/styles/treegrid/_fluent-definition.scss +27 -27
- package/styles/treegrid/_fluent2-definition.scss +26 -26
- package/styles/treegrid/_fusionnew-definition.scss +24 -24
- package/styles/treegrid/_highcontrast-definition.scss +31 -31
- package/styles/treegrid/_highcontrast-light-definition.scss +31 -31
- package/styles/treegrid/_icons.scss +47 -47
- package/styles/treegrid/_layout.bds.scss +4 -4
- package/styles/treegrid/_layout.bootstrap-dark.scss +4 -4
- package/styles/treegrid/_layout.bootstrap.scss +4 -4
- package/styles/treegrid/_layout.bootstrap4.scss +4 -4
- package/styles/treegrid/_layout.bootstrap5-dark.scss +4 -4
- package/styles/treegrid/_layout.bootstrap5.3.scss +4 -4
- package/styles/treegrid/_layout.bootstrap5.scss +4 -4
- package/styles/treegrid/_layout.fabric-dark.scss +4 -4
- package/styles/treegrid/_layout.fabric.scss +4 -4
- package/styles/treegrid/_layout.fluent-dark.scss +4 -4
- package/styles/treegrid/_layout.fluent.scss +4 -4
- package/styles/treegrid/_layout.fluent2.scss +4 -4
- package/styles/treegrid/_layout.highcontrast-light.scss +4 -4
- package/styles/treegrid/_layout.highcontrast.scss +4 -4
- package/styles/treegrid/_layout.material-dark.scss +4 -4
- package/styles/treegrid/_layout.material.scss +4 -4
- package/styles/treegrid/_layout.material3-dark.scss +4 -4
- package/styles/treegrid/_layout.material3.scss +4 -4
- package/styles/treegrid/_layout.scss +531 -531
- package/styles/treegrid/_layout.tailwind-dark.scss +4 -4
- package/styles/treegrid/_layout.tailwind.scss +4 -4
- package/styles/treegrid/_layout.tailwind3.scss +4 -4
- package/styles/treegrid/_material-dark-definition.scss +31 -31
- package/styles/treegrid/_material-definition.scss +31 -31
- package/styles/treegrid/_material3-dark-definition.scss +26 -26
- package/styles/treegrid/_material3-definition.scss +26 -26
- package/styles/treegrid/_tailwind-dark-definition.scss +26 -26
- package/styles/treegrid/_tailwind-definition.scss +26 -26
- package/styles/treegrid/_tailwind3-definition.scss +26 -26
- package/styles/treegrid/_theme-variables.bds.scss +1 -1
- package/styles/treegrid/_theme-variables.bootstrap-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.bootstrap.scss +1 -1
- package/styles/treegrid/_theme-variables.bootstrap4.scss +1 -1
- package/styles/treegrid/_theme-variables.bootstrap5-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.bootstrap5.3.scss +1 -1
- package/styles/treegrid/_theme-variables.bootstrap5.scss +1 -1
- package/styles/treegrid/_theme-variables.fabric-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.fabric.scss +1 -1
- package/styles/treegrid/_theme-variables.fluent-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.fluent.scss +1 -1
- package/styles/treegrid/_theme-variables.fluent2.scss +1 -1
- package/styles/treegrid/_theme-variables.highcontrast-light.scss +1 -1
- package/styles/treegrid/_theme-variables.highcontrast.scss +1 -1
- package/styles/treegrid/_theme-variables.material-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.material.scss +1 -1
- package/styles/treegrid/_theme-variables.material3-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.material3.scss +1 -1
- package/styles/treegrid/_theme-variables.tailwind-dark.scss +1 -1
- package/styles/treegrid/_theme-variables.tailwind.scss +1 -1
- package/styles/treegrid/_theme-variables.tailwind3.scss +1 -1
- package/styles/treegrid/_theme.bds.scss +1 -1
- package/styles/treegrid/_theme.bootstrap-dark.scss +1 -1
- package/styles/treegrid/_theme.bootstrap.scss +1 -1
- package/styles/treegrid/_theme.bootstrap4.scss +1 -1
- package/styles/treegrid/_theme.bootstrap5-dark.scss +1 -1
- package/styles/treegrid/_theme.bootstrap5.3.scss +1 -1
- package/styles/treegrid/_theme.bootstrap5.scss +1 -1
- package/styles/treegrid/_theme.fabric-dark.scss +1 -1
- package/styles/treegrid/_theme.fabric.scss +1 -1
- package/styles/treegrid/_theme.fluent-dark.scss +1 -1
- package/styles/treegrid/_theme.fluent.scss +1 -1
- package/styles/treegrid/_theme.fluent2.scss +1 -1
- package/styles/treegrid/_theme.highcontrast-light.scss +1 -1
- package/styles/treegrid/_theme.highcontrast.scss +1 -1
- package/styles/treegrid/_theme.material-dark.scss +1 -1
- package/styles/treegrid/_theme.material.scss +1 -1
- package/styles/treegrid/_theme.material3-dark.scss +1 -1
- package/styles/treegrid/_theme.material3.scss +1 -1
- package/styles/treegrid/_theme.scss +1 -1
- package/styles/treegrid/_theme.tailwind-dark.scss +1 -1
- package/styles/treegrid/_theme.tailwind.scss +1 -1
- package/styles/treegrid/_theme.tailwind3.scss +1 -1
- package/styles/treegrid/icons/_bds.scss +38 -38
- package/styles/treegrid/icons/_bootstrap-dark.scss +48 -48
- package/styles/treegrid/icons/_bootstrap.scss +48 -48
- package/styles/treegrid/icons/_bootstrap4.scss +48 -48
- package/styles/treegrid/icons/_bootstrap5.3.scss +48 -48
- package/styles/treegrid/icons/_bootstrap5.scss +48 -48
- package/styles/treegrid/icons/_fabric-dark.scss +48 -48
- package/styles/treegrid/icons/_fabric.scss +48 -48
- package/styles/treegrid/icons/_fluent.scss +48 -48
- package/styles/treegrid/icons/_fluent2.scss +48 -48
- package/styles/treegrid/icons/_fusionnew.scss +31 -31
- package/styles/treegrid/icons/_highcontrast-light.scss +48 -48
- package/styles/treegrid/icons/_highcontrast.scss +48 -48
- package/styles/treegrid/icons/_material-dark.scss +48 -48
- package/styles/treegrid/icons/_material.scss +48 -48
- package/styles/treegrid/icons/_material3.scss +48 -48
- package/styles/treegrid/icons/_tailwind-dark.scss +48 -48
- package/styles/treegrid/icons/_tailwind.scss +48 -48
- package/styles/treegrid/icons/_tailwind3.scss +48 -48
- package/aceconfig.js +0 -17
- package/dist/ej2-treegrid.min.js +0 -10
- package/dist/global/ej2-treegrid.min.js +0 -11
- package/dist/global/ej2-treegrid.min.js.map +0 -1
- package/dist/global/index.d.ts +0 -14
- package/helpers/e2e/index.d.ts +0 -1
- package/helpers/e2e/index.js +0 -8
- package/helpers/e2e/treegridhelper.d.ts +0 -21
- package/helpers/e2e/treegridhelper.js +0 -83
- package/tslint.json +0 -111
|
@@ -908,7 +908,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
908
908
|
* Invoke the done method from the argument to start rendering after an edit operation.
|
|
909
909
|
*
|
|
910
910
|
* @event dataSourceChanged
|
|
911
|
-
|
|
911
|
+
* @deprecated
|
|
912
912
|
*/
|
|
913
913
|
dataSourceChanged: EmitType<DataSourceChangedEventArgs>;
|
|
914
914
|
/**
|
|
@@ -916,7 +916,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
916
916
|
* The current view data and total record count should be assigned to the dataSource based on the action performed.
|
|
917
917
|
*
|
|
918
918
|
* @event dataStateChange
|
|
919
|
-
|
|
919
|
+
* @deprecated
|
|
920
920
|
*/
|
|
921
921
|
dataStateChange: EmitType<DataStateChangeEventArgs>;
|
|
922
922
|
/**
|
|
@@ -961,7 +961,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
961
961
|
* Triggers before the selected row is deselected.
|
|
962
962
|
*
|
|
963
963
|
* @event rowDeselecting
|
|
964
|
-
|
|
964
|
+
* @deprecated
|
|
965
965
|
*/
|
|
966
966
|
rowDeselecting: EmitType<RowDeselectEventArgs>;
|
|
967
967
|
/**
|
|
@@ -986,7 +986,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
986
986
|
* Triggers before the column menu opens.
|
|
987
987
|
*
|
|
988
988
|
* @event columnMenuOpen
|
|
989
|
-
|
|
989
|
+
* @deprecated
|
|
990
990
|
*/
|
|
991
991
|
columnMenuOpen: EmitType<ColumnMenuOpenEventArgs>;
|
|
992
992
|
/**
|
|
@@ -1005,21 +1005,21 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
1005
1005
|
* Triggers before a selected cell is deselected.
|
|
1006
1006
|
*
|
|
1007
1007
|
* @event cellDeselecting
|
|
1008
|
-
|
|
1008
|
+
* @deprecated
|
|
1009
1009
|
*/
|
|
1010
1010
|
cellDeselecting: EmitType<CellDeselectEventArgs>;
|
|
1011
1011
|
/**
|
|
1012
1012
|
* Triggers when a selected cell is deselected.
|
|
1013
1013
|
*
|
|
1014
1014
|
* @event cellDeselected
|
|
1015
|
-
|
|
1015
|
+
* @deprecated
|
|
1016
1016
|
*/
|
|
1017
1017
|
cellDeselected: EmitType<CellDeselectEventArgs>;
|
|
1018
1018
|
/**
|
|
1019
1019
|
* Triggers when column resizing starts.
|
|
1020
1020
|
*
|
|
1021
1021
|
* @event resizeStart
|
|
1022
|
-
|
|
1022
|
+
* @deprecated
|
|
1023
1023
|
*/
|
|
1024
1024
|
resizeStart: EmitType<ResizeArgs>;
|
|
1025
1025
|
/**
|
|
@@ -2248,7 +2248,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2248
2248
|
* @param {number} columnIndex - Specifies the column index.
|
|
2249
2249
|
* @returns {Element} - Returns movable cell element from the indexes passed
|
|
2250
2250
|
*
|
|
2251
|
-
|
|
2251
|
+
* @deprecated This method is deprecated. Use getCellFromIndex method instead.
|
|
2252
2252
|
*/
|
|
2253
2253
|
getMovableCellFromIndex(rowIndex: number, columnIndex: number): Element;
|
|
2254
2254
|
/**
|
|
@@ -2256,7 +2256,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2256
2256
|
*
|
|
2257
2257
|
* @returns {Element[]} - Returns element collection of movable rows
|
|
2258
2258
|
*
|
|
2259
|
-
|
|
2259
|
+
* @deprecated This method is deprecated. Use getDataRows method instead.
|
|
2260
2260
|
*/
|
|
2261
2261
|
getMovableDataRows(): Element[];
|
|
2262
2262
|
/**
|
|
@@ -2265,14 +2265,14 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2265
2265
|
* @param {number} index - Specifies the row index.
|
|
2266
2266
|
* @returns {Element} - Returns movable row based on index passed
|
|
2267
2267
|
*
|
|
2268
|
-
|
|
2268
|
+
* @deprecated This method is deprecated. Use getRowByIndex method instead.
|
|
2269
2269
|
*/
|
|
2270
2270
|
getMovableRowByIndex(index: number): Element;
|
|
2271
2271
|
/**
|
|
2272
2272
|
* Gets the TreeGrid's movable content rows from frozen treegrid.
|
|
2273
2273
|
*
|
|
2274
2274
|
* @returns {Element[]}: Returns movable row element
|
|
2275
|
-
|
|
2275
|
+
* @deprecated This method is deprecated. Use getRows method instead.
|
|
2276
2276
|
*/
|
|
2277
2277
|
getMovableRows(): Element[];
|
|
2278
2278
|
/**
|
|
@@ -2281,7 +2281,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2281
2281
|
* @param {number} index - Specifies the row index.
|
|
2282
2282
|
* @returns {Element} returns the element
|
|
2283
2283
|
*
|
|
2284
|
-
|
|
2284
|
+
* @deprecated This method is deprecated. Use getRowByIndex method instead.
|
|
2285
2285
|
*/
|
|
2286
2286
|
getFrozenRightRowByIndex(index: number): Element;
|
|
2287
2287
|
/**
|
|
@@ -2289,7 +2289,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2289
2289
|
*
|
|
2290
2290
|
* @returns {Element[]} returns the element
|
|
2291
2291
|
*
|
|
2292
|
-
|
|
2292
|
+
* @deprecated This method is deprecated. Use getRows method instead.
|
|
2293
2293
|
*/
|
|
2294
2294
|
getFrozenRightRows(): Element[];
|
|
2295
2295
|
/**
|
|
@@ -2297,7 +2297,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2297
2297
|
*
|
|
2298
2298
|
* @returns {Element[]} Returns the Element
|
|
2299
2299
|
*
|
|
2300
|
-
|
|
2300
|
+
* @deprecated This method is deprecated. Use getDataRows method instead.
|
|
2301
2301
|
*/
|
|
2302
2302
|
getFrozenRightDataRows(): Element[];
|
|
2303
2303
|
/**
|
|
@@ -2307,7 +2307,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2307
2307
|
* @param {number} columnIndex - Specifies the column index.
|
|
2308
2308
|
* @returns {Element} Returns the Element
|
|
2309
2309
|
*
|
|
2310
|
-
|
|
2310
|
+
* @deprecated This method is deprecated. Use getCellFromIndex method instead.
|
|
2311
2311
|
*/
|
|
2312
2312
|
getFrozenRightCellFromIndex(rowIndex: number, columnIndex: number): Element;
|
|
2313
2313
|
/**
|
|
@@ -2316,7 +2316,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2316
2316
|
* @param {number} index - Specifies the column index.
|
|
2317
2317
|
* @returns {Element} Returns the Element
|
|
2318
2318
|
*
|
|
2319
|
-
|
|
2319
|
+
* @deprecated This method is deprecated. Use getColumnHeaderByIndex method instead.
|
|
2320
2320
|
*/
|
|
2321
2321
|
getFrozenLeftColumnHeaderByIndex(index: number): Element;
|
|
2322
2322
|
/**
|
|
@@ -2325,7 +2325,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2325
2325
|
* @param {number} index - Specifies the column index.
|
|
2326
2326
|
* @returns {Element} Returns the Element
|
|
2327
2327
|
*
|
|
2328
|
-
|
|
2328
|
+
* @deprecated This method is deprecated. Use getColumnHeaderByIndex method instead.
|
|
2329
2329
|
*/
|
|
2330
2330
|
getFrozenRightColumnHeaderByIndex(index: number): Element;
|
|
2331
2331
|
/**
|
|
@@ -2334,7 +2334,7 @@ export declare class TreeGrid extends Component<HTMLElement> implements INotifyP
|
|
|
2334
2334
|
* @param {number} index - Specifies the column index.
|
|
2335
2335
|
* @returns {Element} Returns the Element
|
|
2336
2336
|
*
|
|
2337
|
-
|
|
2337
|
+
* @deprecated This method is deprecated. Use getColumnHeaderByIndex method instead.
|
|
2338
2338
|
*/
|
|
2339
2339
|
getMovableColumnHeaderByIndex(index: number): Element;
|
|
2340
2340
|
/**
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
extendStatics(d, b);
|
|
10
|
-
function __() { this.constructor = d; }
|
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
-
};
|
|
13
|
-
})();
|
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
-
};
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
20
|
import { Component, addClass, createElement, EventHandler, isNullOrUndefined, extend, merge, SanitizeHtmlHelper } from '@syncfusion/ej2-base';
|
|
21
21
|
import { removeClass, Complex, Collection, getValue } from '@syncfusion/ej2-base';
|
|
22
22
|
import { Event, Property, NotifyPropertyChanges, setValue, KeyboardEvents, L10n } from '@syncfusion/ej2-base';
|
|
@@ -1583,23 +1583,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
1583
1583
|
if (args.requestType === 'save' && _this.aggregates.map(function (ag) { return ag.showChildSummary === true; }).length) {
|
|
1584
1584
|
_this.grid.refresh();
|
|
1585
1585
|
}
|
|
1586
|
-
if (args.action === 'filter') {
|
|
1587
|
-
if (!args.isCollapseMaintain && _this.filterModule['currentFilterObject'] !== '' && _this.enableVirtualization && !_this.initialRender && !_this.expandStateMapping && !(isRemoteData(_this) && _this.enableVirtualization)) {
|
|
1588
|
-
_this.expandAll();
|
|
1589
|
-
}
|
|
1590
|
-
}
|
|
1591
|
-
if (args.requestType === 'searching') {
|
|
1592
|
-
if (!args.isCollapseMaintain && _this.searchSettings.key !== '' && _this.enableVirtualization && !_this.initialRender && !_this.expandStateMapping && !(isRemoteData(_this) && _this.enableVirtualization)) {
|
|
1593
|
-
_this.expandAll();
|
|
1594
|
-
}
|
|
1595
|
-
}
|
|
1596
|
-
if (args.action === 'clearFilter' && _this.enableCollapseAll) {
|
|
1597
|
-
_this.collapseAll();
|
|
1598
|
-
}
|
|
1599
|
-
if (args.action === 'clearFilter' && _this.enableInfiniteScrolling) {
|
|
1600
|
-
_this.expandAll();
|
|
1601
|
-
}
|
|
1602
|
-
if (args.requestType === 'sorting' && _this.enableInfiniteScrolling) {
|
|
1586
|
+
if ((args.action === 'clearFilter' || args.action === 'clear-filter' || args.requestType === 'sorting') && _this.enableInfiniteScrolling) {
|
|
1603
1587
|
_this.expandAll();
|
|
1604
1588
|
}
|
|
1605
1589
|
if (_this.action === 'indenting' || _this.action === 'outdenting') {
|
|
@@ -4404,7 +4388,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4404
4388
|
* @param {number} columnIndex - Specifies the column index.
|
|
4405
4389
|
* @returns {Element} - Returns movable cell element from the indexes passed
|
|
4406
4390
|
*
|
|
4407
|
-
|
|
4391
|
+
* @deprecated This method is deprecated. Use getCellFromIndex method instead.
|
|
4408
4392
|
*/
|
|
4409
4393
|
TreeGrid.prototype.getMovableCellFromIndex = function (rowIndex, columnIndex) {
|
|
4410
4394
|
return this.grid.getCellFromIndex(rowIndex, columnIndex);
|
|
@@ -4414,7 +4398,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4414
4398
|
*
|
|
4415
4399
|
* @returns {Element[]} - Returns element collection of movable rows
|
|
4416
4400
|
*
|
|
4417
|
-
|
|
4401
|
+
* @deprecated This method is deprecated. Use getDataRows method instead.
|
|
4418
4402
|
*/
|
|
4419
4403
|
TreeGrid.prototype.getMovableDataRows = function () {
|
|
4420
4404
|
return this.grid.getDataRows();
|
|
@@ -4425,7 +4409,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4425
4409
|
* @param {number} index - Specifies the row index.
|
|
4426
4410
|
* @returns {Element} - Returns movable row based on index passed
|
|
4427
4411
|
*
|
|
4428
|
-
|
|
4412
|
+
* @deprecated This method is deprecated. Use getRowByIndex method instead.
|
|
4429
4413
|
*/
|
|
4430
4414
|
TreeGrid.prototype.getMovableRowByIndex = function (index) {
|
|
4431
4415
|
return this.grid.getRowByIndex(index);
|
|
@@ -4434,7 +4418,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4434
4418
|
* Gets the TreeGrid's movable content rows from frozen treegrid.
|
|
4435
4419
|
*
|
|
4436
4420
|
* @returns {Element[]}: Returns movable row element
|
|
4437
|
-
|
|
4421
|
+
* @deprecated This method is deprecated. Use getRows method instead.
|
|
4438
4422
|
*/
|
|
4439
4423
|
TreeGrid.prototype.getMovableRows = function () {
|
|
4440
4424
|
return this.grid.getRows();
|
|
@@ -4445,7 +4429,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4445
4429
|
* @param {number} index - Specifies the row index.
|
|
4446
4430
|
* @returns {Element} returns the element
|
|
4447
4431
|
*
|
|
4448
|
-
|
|
4432
|
+
* @deprecated This method is deprecated. Use getRowByIndex method instead.
|
|
4449
4433
|
*/
|
|
4450
4434
|
TreeGrid.prototype.getFrozenRightRowByIndex = function (index) {
|
|
4451
4435
|
return this.grid.getRowByIndex(index);
|
|
@@ -4455,7 +4439,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4455
4439
|
*
|
|
4456
4440
|
* @returns {Element[]} returns the element
|
|
4457
4441
|
*
|
|
4458
|
-
|
|
4442
|
+
* @deprecated This method is deprecated. Use getRows method instead.
|
|
4459
4443
|
*/
|
|
4460
4444
|
TreeGrid.prototype.getFrozenRightRows = function () {
|
|
4461
4445
|
return this.grid.getRows();
|
|
@@ -4465,7 +4449,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4465
4449
|
*
|
|
4466
4450
|
* @returns {Element[]} Returns the Element
|
|
4467
4451
|
*
|
|
4468
|
-
|
|
4452
|
+
* @deprecated This method is deprecated. Use getDataRows method instead.
|
|
4469
4453
|
*/
|
|
4470
4454
|
TreeGrid.prototype.getFrozenRightDataRows = function () {
|
|
4471
4455
|
return this.grid.getDataRows();
|
|
@@ -4477,7 +4461,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4477
4461
|
* @param {number} columnIndex - Specifies the column index.
|
|
4478
4462
|
* @returns {Element} Returns the Element
|
|
4479
4463
|
*
|
|
4480
|
-
|
|
4464
|
+
* @deprecated This method is deprecated. Use getCellFromIndex method instead.
|
|
4481
4465
|
*/
|
|
4482
4466
|
TreeGrid.prototype.getFrozenRightCellFromIndex = function (rowIndex, columnIndex) {
|
|
4483
4467
|
return this.grid.getCellFromIndex(rowIndex, columnIndex);
|
|
@@ -4488,7 +4472,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4488
4472
|
* @param {number} index - Specifies the column index.
|
|
4489
4473
|
* @returns {Element} Returns the Element
|
|
4490
4474
|
*
|
|
4491
|
-
|
|
4475
|
+
* @deprecated This method is deprecated. Use getColumnHeaderByIndex method instead.
|
|
4492
4476
|
*/
|
|
4493
4477
|
TreeGrid.prototype.getFrozenLeftColumnHeaderByIndex = function (index) {
|
|
4494
4478
|
return this.grid.getColumnHeaderByIndex(index);
|
|
@@ -4499,7 +4483,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4499
4483
|
* @param {number} index - Specifies the column index.
|
|
4500
4484
|
* @returns {Element} Returns the Element
|
|
4501
4485
|
*
|
|
4502
|
-
|
|
4486
|
+
* @deprecated This method is deprecated. Use getColumnHeaderByIndex method instead.
|
|
4503
4487
|
*/
|
|
4504
4488
|
TreeGrid.prototype.getFrozenRightColumnHeaderByIndex = function (index) {
|
|
4505
4489
|
return this.grid.getColumnHeaderByIndex(index);
|
|
@@ -4510,7 +4494,7 @@ var TreeGrid = /** @class */ (function (_super) {
|
|
|
4510
4494
|
* @param {number} index - Specifies the column index.
|
|
4511
4495
|
* @returns {Element} Returns the Element
|
|
4512
4496
|
*
|
|
4513
|
-
|
|
4497
|
+
* @deprecated This method is deprecated. Use getColumnHeaderByIndex method instead.
|
|
4514
4498
|
*/
|
|
4515
4499
|
TreeGrid.prototype.getMovableColumnHeaderByIndex = function (index) {
|
|
4516
4500
|
return this.grid.getColumnHeaderByIndex(index);
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
1
|
+
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Interface for a class ColumnChooserSettings
|
|
@@ -6,57 +6,57 @@ import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
|
6
6
|
export interface ColumnChooserSettingsModel {
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
|
-
* Defines the search operator for column chooser.
|
|
10
|
-
*
|
|
11
|
-
* @default 'startsWith'
|
|
12
|
-
* @blazorType Syncfusion.Blazor.Operator
|
|
13
|
-
* @blazorDefaultValue Syncfusion.Blazor.Operator.StartsWith
|
|
14
|
-
*/
|
|
15
|
-
operator?: string;
|
|
9
|
+
* Defines the search operator for column chooser.
|
|
10
|
+
*
|
|
11
|
+
* @default 'startsWith'
|
|
12
|
+
* @blazorType Syncfusion.Blazor.Operator
|
|
13
|
+
* @blazorDefaultValue Syncfusion.Blazor.Operator.StartsWith
|
|
14
|
+
*/
|
|
15
|
+
operator?: string;
|
|
16
16
|
|
|
17
17
|
/**
|
|
18
|
-
* If ignoreAccent set to true, then ignores the diacritic characters or accents while searching in column chooser dialog.
|
|
19
|
-
*
|
|
20
|
-
* @default false
|
|
21
|
-
*/
|
|
22
|
-
ignoreAccent?: boolean;
|
|
18
|
+
* If ignoreAccent set to true, then ignores the diacritic characters or accents while searching in column chooser dialog.
|
|
19
|
+
*
|
|
20
|
+
* @default false
|
|
21
|
+
*/
|
|
22
|
+
ignoreAccent?: boolean;
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
|
-
* Defines the custom header elements for the column chooser header template.
|
|
26
|
-
*
|
|
27
|
-
* @default null
|
|
28
|
-
* @aspType string
|
|
29
|
-
*/
|
|
30
|
-
headerTemplate?: string | Function;
|
|
25
|
+
* Defines the custom header elements for the column chooser header template.
|
|
26
|
+
*
|
|
27
|
+
* @default null
|
|
28
|
+
* @aspType string
|
|
29
|
+
*/
|
|
30
|
+
headerTemplate?: string | Function;
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
|
-
* Defines the custom content elements for the column chooser content template.
|
|
34
|
-
*
|
|
35
|
-
* @default null
|
|
36
|
-
* @aspType string
|
|
37
|
-
*/
|
|
38
|
-
template?: string | Function;
|
|
33
|
+
* Defines the custom content elements for the column chooser content template.
|
|
34
|
+
*
|
|
35
|
+
* @default null
|
|
36
|
+
* @aspType string
|
|
37
|
+
*/
|
|
38
|
+
template?: string | Function;
|
|
39
39
|
|
|
40
40
|
/**
|
|
41
|
-
* Defines the custom footer elements for the column chooser footer template.
|
|
42
|
-
*
|
|
43
|
-
* @default null
|
|
44
|
-
* @aspType string
|
|
45
|
-
*/
|
|
46
|
-
footerTemplate?: string | Function;
|
|
41
|
+
* Defines the custom footer elements for the column chooser footer template.
|
|
42
|
+
*
|
|
43
|
+
* @default null
|
|
44
|
+
* @aspType string
|
|
45
|
+
*/
|
|
46
|
+
footerTemplate?: string | Function;
|
|
47
47
|
|
|
48
48
|
/**
|
|
49
|
-
* Enables or disables the search option in the column chooser.
|
|
50
|
-
*
|
|
51
|
-
* @default true
|
|
52
|
-
*/
|
|
53
|
-
enableSearching?: boolean;
|
|
49
|
+
* Enables or disables the search option in the column chooser.
|
|
50
|
+
*
|
|
51
|
+
* @default true
|
|
52
|
+
*/
|
|
53
|
+
enableSearching?: boolean;
|
|
54
54
|
|
|
55
55
|
/**
|
|
56
|
-
* Renders a custom component to replace or extend the default column chooser UI.
|
|
57
|
-
* @param target - The target HTML element where the custom component will be appended in the column chooser dialog.
|
|
58
|
-
* @aspType string
|
|
59
|
-
*/
|
|
60
|
-
renderCustomColumnChooser?: string | Function;
|
|
56
|
+
* Renders a custom component to replace or extend the default column chooser UI.
|
|
57
|
+
* @param target - The target HTML element where the custom component will be appended in the column chooser dialog.
|
|
58
|
+
* @aspType string
|
|
59
|
+
*/
|
|
60
|
+
renderCustomColumnChooser?: string | Function;
|
|
61
61
|
|
|
62
62
|
}
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
extendStatics(d, b);
|
|
10
|
-
function __() { this.constructor = d; }
|
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
-
};
|
|
13
|
-
})();
|
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
-
};
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
20
|
import { Property, ChildProperty } from '@syncfusion/ej2-base';
|
|
21
21
|
/**
|
|
22
22
|
* Configures the column chooser behavior of the Grid.
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TextAlign, ClipMode, ValueAccessor, IFilter, IFilterUI, IEditCell, CommandModel, freezeDirection } from '@syncfusion/ej2-grids';
|
|
1
|
+
import { TextAlign, ClipMode, ValueAccessor, IFilter, IFilterUI, IEditCell, CommandModel, freezeDirection } from '@syncfusion/ej2-grids';
|
|
2
2
|
import {ColumnModel} from "./column";
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -14,11 +14,11 @@ export interface ColumnModel {
|
|
|
14
14
|
export interface TreeGridColumnModel extends ColumnModel{
|
|
15
15
|
|
|
16
16
|
/**
|
|
17
|
-
* Defines stacked columns
|
|
18
|
-
*
|
|
19
|
-
* @default null
|
|
20
|
-
*/
|
|
21
|
-
columns?: string[] | ColumnModel[];
|
|
17
|
+
* Defines stacked columns
|
|
18
|
+
*
|
|
19
|
+
* @default null
|
|
20
|
+
*/
|
|
21
|
+
columns?: string[] | ColumnModel[];
|
|
22
22
|
|
|
23
23
|
}
|
|
24
24
|
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
var __extends = (this && this.__extends) || (function () {
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
extendStatics(d, b);
|
|
10
|
-
function __() { this.constructor = d; }
|
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
-
};
|
|
13
|
-
})();
|
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
-
};
|
|
1
|
+
var __extends = (this && this.__extends) || (function () {
|
|
2
|
+
var extendStatics = function (d, b) {
|
|
3
|
+
extendStatics = Object.setPrototypeOf ||
|
|
4
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
+
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
+
return extendStatics(d, b);
|
|
7
|
+
};
|
|
8
|
+
return function (d, b) {
|
|
9
|
+
extendStatics(d, b);
|
|
10
|
+
function __() { this.constructor = d; }
|
|
11
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
+
};
|
|
13
|
+
})();
|
|
14
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
+
};
|
|
20
20
|
import { merge, Property } from '@syncfusion/ej2-base';
|
|
21
21
|
/**
|
|
22
22
|
* Represents the "Column" model class for TreeGrid, defining essential properties and functionalities of a column.
|