@bryntum/grid-trial 7.2.3 → 7.2.4
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/fluent2-dark.css +1 -1
- package/fluent2-light.css +1 -1
- package/grid.css +2 -2
- package/grid.d.ts +95 -88
- package/grid.lwc.module.d.ts +1 -1
- package/grid.lwc.module.js +2 -2
- package/grid.module.d.ts +1 -1
- package/grid.module.js +39 -39
- package/grid.thin.d.ts +50 -88
- package/grid.umd.d.ts +1 -1
- package/grid.umd.js +48 -48
- package/grid.wc.module.d.ts +1 -1
- package/grid.wc.module.js +41 -41
- package/high-contrast-dark.css +2 -2
- package/high-contrast-light.css +2 -2
- package/locales/grid.locale.Ar.js +1 -1
- package/locales/grid.locale.Bg.js +1 -1
- package/locales/grid.locale.Ca.js +1 -1
- package/locales/grid.locale.Cs.js +1 -1
- package/locales/grid.locale.Da.js +1 -1
- package/locales/grid.locale.De.js +1 -1
- package/locales/grid.locale.El.js +1 -1
- package/locales/grid.locale.En.js +1 -1
- package/locales/grid.locale.EnGb.js +1 -1
- package/locales/grid.locale.Es.js +1 -1
- package/locales/grid.locale.Et.js +1 -1
- package/locales/grid.locale.Eu.js +1 -1
- package/locales/grid.locale.Fi.js +1 -1
- package/locales/grid.locale.FrFr.js +1 -1
- package/locales/grid.locale.Gl.js +1 -1
- package/locales/grid.locale.He.js +1 -1
- package/locales/grid.locale.Hi.js +1 -1
- package/locales/grid.locale.Hr.js +1 -1
- package/locales/grid.locale.Hu.js +1 -1
- package/locales/grid.locale.Id.js +1 -1
- package/locales/grid.locale.It.js +1 -1
- package/locales/grid.locale.Ja.js +1 -1
- package/locales/grid.locale.Kk.js +1 -1
- package/locales/grid.locale.Ko.js +1 -1
- package/locales/grid.locale.Lt.js +1 -1
- package/locales/grid.locale.Lv.js +1 -1
- package/locales/grid.locale.Ms.js +1 -1
- package/locales/grid.locale.Nl.js +1 -1
- package/locales/grid.locale.No.js +1 -1
- package/locales/grid.locale.Pl.js +1 -1
- package/locales/grid.locale.Pt.js +1 -1
- package/locales/grid.locale.PtBr.js +1 -1
- package/locales/grid.locale.Ro.js +1 -1
- package/locales/grid.locale.Ru.js +1 -1
- package/locales/grid.locale.Sk.js +1 -1
- package/locales/grid.locale.Sl.js +1 -1
- package/locales/grid.locale.Sr.js +1 -1
- package/locales/grid.locale.SrRs.js +1 -1
- package/locales/grid.locale.SvSE.js +1 -1
- package/locales/grid.locale.Th.js +1 -1
- package/locales/grid.locale.Tr.js +1 -1
- package/locales/grid.locale.Uk.js +1 -1
- package/locales/grid.locale.Vi.js +1 -1
- package/locales/grid.locale.ZhCn.js +1 -1
- package/locales/grid.locale.ZhTw.js +1 -1
- package/material3-dark.css +1 -1
- package/material3-light.css +1 -1
- package/package.json +1 -1
- package/stockholm-dark.css +1 -1
- package/stockholm-light.css +1 -1
- package/svalbard-dark.css +1 -1
- package/svalbard-light.css +1 -1
- package/visby-dark.css +1 -1
- package/visby-light.css +1 -1
package/grid.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
*
|
|
3
|
-
* Bryntum Grid 7.2.
|
|
3
|
+
* Bryntum Grid 7.2.4 (TRIAL VERSION)
|
|
4
4
|
*
|
|
5
5
|
* Copyright(c) 2026 Bryntum AB
|
|
6
6
|
* https://bryntum.com/contact
|
|
@@ -1312,6 +1312,25 @@ type BryntumListenerConfig = Record<string, Function|boolean|object|object[]|num
|
|
|
1312
1312
|
asap?: boolean
|
|
1313
1313
|
}
|
|
1314
1314
|
|
|
1315
|
+
type PluginConfigObject = {
|
|
1316
|
+
/**
|
|
1317
|
+
* Method names to add to the client (when they don't already exist)
|
|
1318
|
+
*/
|
|
1319
|
+
assign?: string[]
|
|
1320
|
+
/**
|
|
1321
|
+
* Methods called <strong>before</strong> the client's original method
|
|
1322
|
+
*/
|
|
1323
|
+
before?: string[]
|
|
1324
|
+
/**
|
|
1325
|
+
* Methods called <strong>after</strong> the client's original method
|
|
1326
|
+
*/
|
|
1327
|
+
after?: string[]|object
|
|
1328
|
+
/**
|
|
1329
|
+
* Methods that replace the client's method (original accessible via `this.overridden`)
|
|
1330
|
+
*/
|
|
1331
|
+
override?: string[]
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1315
1334
|
/**
|
|
1316
1335
|
* The operator to use when comparing a collection object.
|
|
1317
1336
|
* ...
|
|
@@ -3630,6 +3649,13 @@ type AjaxStoreConfig = {
|
|
|
3630
3649
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-catchEventHandlerExceptions)
|
|
3631
3650
|
*/
|
|
3632
3651
|
catchEventHandlerExceptions?: boolean
|
|
3652
|
+
/**
|
|
3653
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
3654
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
3655
|
+
* ...
|
|
3656
|
+
* [View online docs...](https://bryntum.com/products/grid/docs/api/Core/data/AjaxStore#config-chainExpandCollapse)
|
|
3657
|
+
*/
|
|
3658
|
+
chainExpandCollapse?: boolean
|
|
3633
3659
|
/**
|
|
3634
3660
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
3635
3661
|
* will be ignored.
|
|
@@ -6431,6 +6457,13 @@ type StoreConfig = {
|
|
|
6431
6457
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Core/data/Store#config-catchEventHandlerExceptions)
|
|
6432
6458
|
*/
|
|
6433
6459
|
catchEventHandlerExceptions?: boolean
|
|
6460
|
+
/**
|
|
6461
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
6462
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
6463
|
+
* ...
|
|
6464
|
+
* [View online docs...](https://bryntum.com/products/grid/docs/api/Core/data/Store#config-chainExpandCollapse)
|
|
6465
|
+
*/
|
|
6466
|
+
chainExpandCollapse?: boolean
|
|
6434
6467
|
/**
|
|
6435
6468
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
6436
6469
|
* will be ignored.
|
|
@@ -9986,6 +10019,13 @@ export const StoreCRUD : <T extends AnyConstructor<Base>>(base : T) => AnyConstr
|
|
|
9986
10019
|
* Type with configuration options for [StoreChained](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreChained) class.
|
|
9987
10020
|
*/
|
|
9988
10021
|
type StoreChainedClassConfig = {
|
|
10022
|
+
/**
|
|
10023
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
10024
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
10025
|
+
* ...
|
|
10026
|
+
* [View online docs...](https://bryntum.com/products/grid/docs/api/Core/data/mixin/StoreChained#config-chainExpandCollapse)
|
|
10027
|
+
*/
|
|
10028
|
+
chainExpandCollapse?: boolean
|
|
9989
10029
|
/**
|
|
9990
10030
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
9991
10031
|
* will be ignored.
|
|
@@ -17853,6 +17893,11 @@ export class InstancePlugin extends Base {
|
|
|
17853
17893
|
* Identifies an object as an instance of [Localizable](https://bryntum.com/products/grid/docs/api/Core/localization/Localizable) class, or subclass thereof.
|
|
17854
17894
|
*/
|
|
17855
17895
|
static readonly isLocalizable: boolean
|
|
17896
|
+
/**
|
|
17897
|
+
* Defines how the plugin's methods integrate with its client (the widget it is attached to).
|
|
17898
|
+
* Override this static getter in subclasses.
|
|
17899
|
+
*/
|
|
17900
|
+
static readonly pluginConfig: PluginConfigObject
|
|
17856
17901
|
/**
|
|
17857
17902
|
* Set to `true` to call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
17858
17903
|
*/
|
|
@@ -107536,12 +107581,9 @@ type ActionColumnConfig = {
|
|
|
107536
107581
|
*/
|
|
107537
107582
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
107538
107583
|
/**
|
|
107539
|
-
* Child
|
|
107540
|
-
* tasks.
|
|
107541
|
-
* ...
|
|
107542
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/ActionColumn#config-children)
|
|
107584
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
107543
107585
|
*/
|
|
107544
|
-
children?:
|
|
107586
|
+
children?: GridColumnConfig[]|Column[]
|
|
107545
107587
|
/**
|
|
107546
107588
|
* CSS class added to the header of this column
|
|
107547
107589
|
*/
|
|
@@ -108215,12 +108257,9 @@ type AggregateColumnConfig = {
|
|
|
108215
108257
|
*/
|
|
108216
108258
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
108217
108259
|
/**
|
|
108218
|
-
* Child
|
|
108219
|
-
* tasks.
|
|
108220
|
-
* ...
|
|
108221
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/AggregateColumn#config-children)
|
|
108260
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
108222
108261
|
*/
|
|
108223
|
-
children?:
|
|
108262
|
+
children?: GridColumnConfig[]|Column[]
|
|
108224
108263
|
/**
|
|
108225
108264
|
* CSS class added to the header of this column
|
|
108226
108265
|
*/
|
|
@@ -109006,12 +109045,9 @@ type ChartColumnConfig = {
|
|
|
109006
109045
|
*/
|
|
109007
109046
|
chartCls?: string
|
|
109008
109047
|
/**
|
|
109009
|
-
* Child
|
|
109010
|
-
* tasks.
|
|
109011
|
-
* ...
|
|
109012
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/ChartColumn#config-children)
|
|
109048
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
109013
109049
|
*/
|
|
109014
|
-
children?:
|
|
109050
|
+
children?: GridColumnConfig[]|Column[]
|
|
109015
109051
|
/**
|
|
109016
109052
|
* CSS class added to the header of this column
|
|
109017
109053
|
*/
|
|
@@ -109782,12 +109818,9 @@ type CheckColumnConfig = {
|
|
|
109782
109818
|
*/
|
|
109783
109819
|
checkCls?: string
|
|
109784
109820
|
/**
|
|
109785
|
-
* Child
|
|
109786
|
-
* tasks.
|
|
109787
|
-
* ...
|
|
109788
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/CheckColumn#config-children)
|
|
109821
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
109789
109822
|
*/
|
|
109790
|
-
children?:
|
|
109823
|
+
children?: GridColumnConfig[]|Column[]
|
|
109791
109824
|
/**
|
|
109792
109825
|
* CSS class added to the header of this column
|
|
109793
109826
|
*/
|
|
@@ -110570,12 +110603,9 @@ type ColorColumnConfig = {
|
|
|
110570
110603
|
*/
|
|
110571
110604
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
110572
110605
|
/**
|
|
110573
|
-
* Child
|
|
110574
|
-
* tasks.
|
|
110575
|
-
* ...
|
|
110576
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/ColorColumn#config-children)
|
|
110606
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
110577
110607
|
*/
|
|
110578
|
-
children?:
|
|
110608
|
+
children?: GridColumnConfig[]|Column[]
|
|
110579
110609
|
/**
|
|
110580
110610
|
* CSS class added to the header of this column
|
|
110581
110611
|
*/
|
|
@@ -111309,12 +111339,9 @@ type ColumnConfig = {
|
|
|
111309
111339
|
*/
|
|
111310
111340
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
111311
111341
|
/**
|
|
111312
|
-
* Child
|
|
111313
|
-
* tasks.
|
|
111314
|
-
* ...
|
|
111315
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-children)
|
|
111342
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
111316
111343
|
*/
|
|
111317
|
-
children?:
|
|
111344
|
+
children?: GridColumnConfig[]|Column[]
|
|
111318
111345
|
/**
|
|
111319
111346
|
* CSS class added to the header of this column
|
|
111320
111347
|
*/
|
|
@@ -111876,6 +111903,12 @@ export class Column extends Model {
|
|
|
111876
111903
|
* Set to `true` to call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
111877
111904
|
*/
|
|
111878
111905
|
callOnFunctions: boolean
|
|
111906
|
+
/**
|
|
111907
|
+
* Returns `true` if this column can currently be sorted by the user.
|
|
111908
|
+
* Checks both the column's own [sortable](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-sortable) config and whether the
|
|
111909
|
+
* [Sort](https://bryntum.com/products/grid/docs/api/Grid/feature/Sort) feature is enabled on the grid.
|
|
111910
|
+
*/
|
|
111911
|
+
readonly canSort: boolean
|
|
111879
111912
|
/**
|
|
111880
111913
|
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
111881
111914
|
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
@@ -112596,12 +112629,9 @@ type CurrencyColumnConfig = {
|
|
|
112596
112629
|
*/
|
|
112597
112630
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
112598
112631
|
/**
|
|
112599
|
-
* Child
|
|
112600
|
-
* tasks.
|
|
112601
|
-
* ...
|
|
112602
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/CurrencyColumn#config-children)
|
|
112632
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
112603
112633
|
*/
|
|
112604
|
-
children?:
|
|
112634
|
+
children?: GridColumnConfig[]|Column[]
|
|
112605
112635
|
/**
|
|
112606
112636
|
* CSS class added to the header of this column
|
|
112607
112637
|
*/
|
|
@@ -113354,12 +113384,9 @@ type DateColumnConfig = {
|
|
|
113354
113384
|
*/
|
|
113355
113385
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
113356
113386
|
/**
|
|
113357
|
-
* Child
|
|
113358
|
-
* tasks.
|
|
113359
|
-
* ...
|
|
113360
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/DateColumn#config-children)
|
|
113387
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
113361
113388
|
*/
|
|
113362
|
-
children?:
|
|
113389
|
+
children?: GridColumnConfig[]|Column[]
|
|
113363
113390
|
/**
|
|
113364
113391
|
* CSS class added to the header of this column
|
|
113365
113392
|
*/
|
|
@@ -114118,12 +114145,9 @@ type NumberColumnConfig = {
|
|
|
114118
114145
|
*/
|
|
114119
114146
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
114120
114147
|
/**
|
|
114121
|
-
* Child
|
|
114122
|
-
* tasks.
|
|
114123
|
-
* ...
|
|
114124
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/NumberColumn#config-children)
|
|
114148
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
114125
114149
|
*/
|
|
114126
|
-
children?:
|
|
114150
|
+
children?: GridColumnConfig[]|Column[]
|
|
114127
114151
|
/**
|
|
114128
114152
|
* CSS class added to the header of this column
|
|
114129
114153
|
*/
|
|
@@ -114898,12 +114922,9 @@ type PercentColumnConfig = {
|
|
|
114898
114922
|
*/
|
|
114899
114923
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
114900
114924
|
/**
|
|
114901
|
-
* Child
|
|
114902
|
-
* tasks.
|
|
114903
|
-
* ...
|
|
114904
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/PercentColumn#config-children)
|
|
114925
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
114905
114926
|
*/
|
|
114906
|
-
children?:
|
|
114927
|
+
children?: GridColumnConfig[]|Column[]
|
|
114907
114928
|
/**
|
|
114908
114929
|
* CSS class added to the header of this column
|
|
114909
114930
|
*/
|
|
@@ -115665,12 +115686,9 @@ type RatingColumnConfig = {
|
|
|
115665
115686
|
*/
|
|
115666
115687
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
115667
115688
|
/**
|
|
115668
|
-
* Child
|
|
115669
|
-
* tasks.
|
|
115670
|
-
* ...
|
|
115671
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/RatingColumn#config-children)
|
|
115689
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
115672
115690
|
*/
|
|
115673
|
-
children?:
|
|
115691
|
+
children?: GridColumnConfig[]|Column[]
|
|
115674
115692
|
/**
|
|
115675
115693
|
* CSS class added to the header of this column
|
|
115676
115694
|
*/
|
|
@@ -116423,12 +116441,9 @@ type RowNumberColumnConfig = {
|
|
|
116423
116441
|
*/
|
|
116424
116442
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
116425
116443
|
/**
|
|
116426
|
-
* Child
|
|
116427
|
-
* tasks.
|
|
116428
|
-
* ...
|
|
116429
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/RowNumberColumn#config-children)
|
|
116444
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
116430
116445
|
*/
|
|
116431
|
-
children?:
|
|
116446
|
+
children?: GridColumnConfig[]|Column[]
|
|
116432
116447
|
/**
|
|
116433
116448
|
* CSS class added to the header of this column
|
|
116434
116449
|
*/
|
|
@@ -117033,12 +117048,9 @@ type SparklineColumnConfig = {
|
|
|
117033
117048
|
*/
|
|
117034
117049
|
chartType?: 'line'|'bar'|'pie'
|
|
117035
117050
|
/**
|
|
117036
|
-
* Child
|
|
117037
|
-
* tasks.
|
|
117038
|
-
* ...
|
|
117039
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/SparklineColumn#config-children)
|
|
117051
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
117040
117052
|
*/
|
|
117041
|
-
children?:
|
|
117053
|
+
children?: GridColumnConfig[]|Column[]
|
|
117042
117054
|
/**
|
|
117043
117055
|
* CSS class added to the header of this column
|
|
117044
117056
|
*/
|
|
@@ -117758,12 +117770,9 @@ type TemplateColumnConfig = {
|
|
|
117758
117770
|
*/
|
|
117759
117771
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
117760
117772
|
/**
|
|
117761
|
-
* Child
|
|
117762
|
-
* tasks.
|
|
117763
|
-
* ...
|
|
117764
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/TemplateColumn#config-children)
|
|
117773
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
117765
117774
|
*/
|
|
117766
|
-
children?:
|
|
117775
|
+
children?: GridColumnConfig[]|Column[]
|
|
117767
117776
|
/**
|
|
117768
117777
|
* CSS class added to the header of this column
|
|
117769
117778
|
*/
|
|
@@ -118483,12 +118492,9 @@ type TimeColumnConfig = {
|
|
|
118483
118492
|
*/
|
|
118484
118493
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
118485
118494
|
/**
|
|
118486
|
-
* Child
|
|
118487
|
-
* tasks.
|
|
118488
|
-
* ...
|
|
118489
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/TimeColumn#config-children)
|
|
118495
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
118490
118496
|
*/
|
|
118491
|
-
children?:
|
|
118497
|
+
children?: GridColumnConfig[]|Column[]
|
|
118492
118498
|
/**
|
|
118493
118499
|
* CSS class added to the header of this column
|
|
118494
118500
|
*/
|
|
@@ -119205,12 +119211,9 @@ type TreeColumnConfig = {
|
|
|
119205
119211
|
*/
|
|
119206
119212
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
119207
119213
|
/**
|
|
119208
|
-
* Child
|
|
119209
|
-
* tasks.
|
|
119210
|
-
* ...
|
|
119211
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/TreeColumn#config-children)
|
|
119214
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
119212
119215
|
*/
|
|
119213
|
-
children?:
|
|
119216
|
+
children?: GridColumnConfig[]|Column[]
|
|
119214
119217
|
/**
|
|
119215
119218
|
* CSS class added to the header of this column
|
|
119216
119219
|
*/
|
|
@@ -119981,12 +119984,9 @@ type WidgetColumnConfig = {
|
|
|
119981
119984
|
*/
|
|
119982
119985
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
119983
119986
|
/**
|
|
119984
|
-
* Child
|
|
119985
|
-
* tasks.
|
|
119986
|
-
* ...
|
|
119987
|
-
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/column/WidgetColumn#config-children)
|
|
119987
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
119988
119988
|
*/
|
|
119989
|
-
children?:
|
|
119989
|
+
children?: GridColumnConfig[]|Column[]
|
|
119990
119990
|
/**
|
|
119991
119991
|
* CSS class added to the header of this column
|
|
119992
119992
|
*/
|
|
@@ -121256,6 +121256,13 @@ type ColumnStoreConfig = {
|
|
|
121256
121256
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/data/ColumnStore#config-catchEventHandlerExceptions)
|
|
121257
121257
|
*/
|
|
121258
121258
|
catchEventHandlerExceptions?: boolean
|
|
121259
|
+
/**
|
|
121260
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
121261
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
121262
|
+
* ...
|
|
121263
|
+
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/data/ColumnStore#config-chainExpandCollapse)
|
|
121264
|
+
*/
|
|
121265
|
+
chainExpandCollapse?: boolean
|
|
121259
121266
|
/**
|
|
121260
121267
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
121261
121268
|
* will be ignored.
|
|
@@ -128070,7 +128077,7 @@ export class LockRows extends Split {
|
|
|
128070
128077
|
*/
|
|
128071
128078
|
readonly isLockRows: boolean
|
|
128072
128079
|
/**
|
|
128073
|
-
* Locking rows
|
|
128080
|
+
* Locking rows results in two chained stores that holds a subset of the records, one for the locked records and one
|
|
128074
128081
|
* for the rest. This property holds the original store, if you need to access it.
|
|
128075
128082
|
*/
|
|
128076
128083
|
originalStore: Store
|
|
@@ -144824,7 +144831,7 @@ export class GridBase extends Panel {
|
|
|
144824
144831
|
*/
|
|
144825
144832
|
longPressTime: number
|
|
144826
144833
|
/**
|
|
144827
|
-
* Locking rows
|
|
144834
|
+
* Locking rows results in two chained stores that holds a subset of the records, one for the locked records and one
|
|
144828
144835
|
* for the rest. This property holds the original store, if you need to access it.
|
|
144829
144836
|
*/
|
|
144830
144837
|
originalStore: Store
|