@bryntum/grid-thin-trial 7.2.1 → 7.2.2
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 +31 -31
- package/grid.css +5 -0
- package/grid.css.map +3 -3
- package/grid.d.ts +146 -66
- package/high-contrast-dark.css +32 -32
- package/lib/column/Column.js +1 -1
- package/lib/column/WidgetColumn.js +1 -1
- package/lib/feature/CellCopyPaste.js +1 -1
- package/lib/feature/CellEdit.js +1 -1
- package/lib/feature/CellMenu.js +1 -1
- package/lib/feature/ColumnRename.js +1 -1
- package/lib/feature/Filter.js +1 -1
- package/lib/feature/Group.js +1 -1
- package/lib/feature/HeaderMenu.js +1 -1
- package/lib/feature/LockRows.js +1 -1
- package/lib/feature/QuickFind.js +1 -1
- package/lib/feature/RowCopyPaste.css +3 -0
- package/lib/feature/RowCopyPaste.js +1 -1
- package/lib/feature/RowExpander.js +1 -1
- package/lib/feature/Search.js +1 -1
- package/lib/feature/Sort.js +1 -1
- package/lib/feature/Split.js +1 -1
- package/lib/feature/Tree.js +1 -1
- package/lib/feature/TreeGroup.js +1 -1
- package/lib/feature/base/CopyPasteBase.js +1 -1
- package/lib/feature/experimental/ExcelExporter.js +1 -1
- package/lib/feature/export/PdfExport.js +3 -3
- package/lib/feature/export/consumer/MemoryConsumer.js +1 -0
- package/lib/feature/export/exporter/SinglePageUnscaledExporter.js +1 -1
- package/lib/row/RowManager.js +1 -1
- package/lib/util/TableExporter.js +1 -1
- package/lib/view/Grid.js +1 -1
- package/lib/view/GridBase.js +1 -1
- package/lib/view/Header.js +1 -1
- package/lib/view/SubGrid.js +1 -1
- package/lib/view/mixin/GridElementEvents.js +1 -1
- package/lib/view/mixin/GridNavigation.js +1 -1
- package/lib/view/mixin/GridState.js +1 -1
- package/lib/widget/GroupBar.js +1 -1
- package/locales/grid.locale.De.js +1 -1
- package/material3-dark.css +31 -31
- package/package.json +1 -1
- package/stockholm-dark.css +32 -32
- package/svalbard-dark.css +32 -32
- package/visby-dark.css +34 -33
- package/visby-light.css +2 -1
package/grid.d.ts
CHANGED
|
@@ -914,7 +914,7 @@ type ActionColumnConfig = {
|
|
|
914
914
|
id?: string|number
|
|
915
915
|
/**
|
|
916
916
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
917
|
-
* field edit instead of when editing is finished by using
|
|
917
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
918
918
|
*/
|
|
919
919
|
instantUpdate?: boolean
|
|
920
920
|
/**
|
|
@@ -1082,7 +1082,7 @@ type ActionColumnConfig = {
|
|
|
1082
1082
|
*/
|
|
1083
1083
|
responsiveLevels?: object
|
|
1084
1084
|
/**
|
|
1085
|
-
* Setting this option means that pressing the
|
|
1085
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
1086
1086
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
1087
1087
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
1088
1088
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -1646,7 +1646,7 @@ type AggregateColumnConfig = {
|
|
|
1646
1646
|
includeParentInChangeSet?: boolean
|
|
1647
1647
|
/**
|
|
1648
1648
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
1649
|
-
* field edit instead of when editing is finished by using
|
|
1649
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
1650
1650
|
*/
|
|
1651
1651
|
instantUpdate?: boolean
|
|
1652
1652
|
/**
|
|
@@ -1831,7 +1831,7 @@ type AggregateColumnConfig = {
|
|
|
1831
1831
|
*/
|
|
1832
1832
|
responsiveLevels?: object
|
|
1833
1833
|
/**
|
|
1834
|
-
* Setting this option means that pressing the
|
|
1834
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
1835
1835
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
1836
1836
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
1837
1837
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -2408,7 +2408,7 @@ type ChartColumnConfig = {
|
|
|
2408
2408
|
id?: string|number
|
|
2409
2409
|
/**
|
|
2410
2410
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
2411
|
-
* field edit instead of when editing is finished by using
|
|
2411
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
2412
2412
|
*/
|
|
2413
2413
|
instantUpdate?: boolean
|
|
2414
2414
|
/**
|
|
@@ -2584,7 +2584,7 @@ type ChartColumnConfig = {
|
|
|
2584
2584
|
*/
|
|
2585
2585
|
responsiveLevels?: object
|
|
2586
2586
|
/**
|
|
2587
|
-
* Setting this option means that pressing the
|
|
2587
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
2588
2588
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
2589
2589
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
2590
2590
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -3183,7 +3183,7 @@ type CheckColumnConfig = {
|
|
|
3183
3183
|
id?: string|number
|
|
3184
3184
|
/**
|
|
3185
3185
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
3186
|
-
* field edit instead of when editing is finished by using
|
|
3186
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
3187
3187
|
*/
|
|
3188
3188
|
instantUpdate?: boolean
|
|
3189
3189
|
/**
|
|
@@ -3359,7 +3359,7 @@ type CheckColumnConfig = {
|
|
|
3359
3359
|
*/
|
|
3360
3360
|
responsiveLevels?: object
|
|
3361
3361
|
/**
|
|
3362
|
-
* Setting this option means that pressing the
|
|
3362
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
3363
3363
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
3364
3364
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
3365
3365
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -3973,7 +3973,7 @@ type ColorColumnConfig = {
|
|
|
3973
3973
|
id?: string|number
|
|
3974
3974
|
/**
|
|
3975
3975
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
3976
|
-
* field edit instead of when editing is finished by using
|
|
3976
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
3977
3977
|
*/
|
|
3978
3978
|
instantUpdate?: boolean
|
|
3979
3979
|
/**
|
|
@@ -4145,7 +4145,7 @@ type ColorColumnConfig = {
|
|
|
4145
4145
|
*/
|
|
4146
4146
|
responsiveLevels?: object
|
|
4147
4147
|
/**
|
|
4148
|
-
* Setting this option means that pressing the
|
|
4148
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
4149
4149
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
4150
4150
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
4151
4151
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -4708,7 +4708,7 @@ type ColumnConfig = {
|
|
|
4708
4708
|
id?: string|number
|
|
4709
4709
|
/**
|
|
4710
4710
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
4711
|
-
* field edit instead of when editing is finished by using
|
|
4711
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
4712
4712
|
*/
|
|
4713
4713
|
instantUpdate?: boolean
|
|
4714
4714
|
/**
|
|
@@ -4880,7 +4880,7 @@ type ColumnConfig = {
|
|
|
4880
4880
|
*/
|
|
4881
4881
|
responsiveLevels?: object
|
|
4882
4882
|
/**
|
|
4883
|
-
* Setting this option means that pressing the
|
|
4883
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
4884
4884
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
4885
4885
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
4886
4886
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -5245,7 +5245,7 @@ export class Column extends Model {
|
|
|
5245
5245
|
icon: string
|
|
5246
5246
|
/**
|
|
5247
5247
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
5248
|
-
* field edit instead of when editing is finished by using
|
|
5248
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
5249
5249
|
*/
|
|
5250
5250
|
instantUpdate: boolean
|
|
5251
5251
|
/**
|
|
@@ -5341,7 +5341,7 @@ export class Column extends Model {
|
|
|
5341
5341
|
*/
|
|
5342
5342
|
responsiveLevels: object
|
|
5343
5343
|
/**
|
|
5344
|
-
* Setting this option means that pressing the
|
|
5344
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
5345
5345
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
5346
5346
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
5347
5347
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -6010,7 +6010,7 @@ type CurrencyColumnConfig = {
|
|
|
6010
6010
|
id?: string|number
|
|
6011
6011
|
/**
|
|
6012
6012
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
6013
|
-
* field edit instead of when editing is finished by using
|
|
6013
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
6014
6014
|
*/
|
|
6015
6015
|
instantUpdate?: boolean
|
|
6016
6016
|
/**
|
|
@@ -6195,7 +6195,7 @@ type CurrencyColumnConfig = {
|
|
|
6195
6195
|
*/
|
|
6196
6196
|
responsiveLevels?: object
|
|
6197
6197
|
/**
|
|
6198
|
-
* Setting this option means that pressing the
|
|
6198
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
6199
6199
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
6200
6200
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
6201
6201
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -6757,7 +6757,7 @@ type DateColumnConfig = {
|
|
|
6757
6757
|
id?: string|number
|
|
6758
6758
|
/**
|
|
6759
6759
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
6760
|
-
* field edit instead of when editing is finished by using
|
|
6760
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
6761
6761
|
*/
|
|
6762
6762
|
instantUpdate?: boolean
|
|
6763
6763
|
/**
|
|
@@ -6937,7 +6937,7 @@ type DateColumnConfig = {
|
|
|
6937
6937
|
*/
|
|
6938
6938
|
responsiveLevels?: object
|
|
6939
6939
|
/**
|
|
6940
|
-
* Setting this option means that pressing the
|
|
6940
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
6941
6941
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
6942
6942
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
6943
6943
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -7520,7 +7520,7 @@ type NumberColumnConfig = {
|
|
|
7520
7520
|
id?: string|number
|
|
7521
7521
|
/**
|
|
7522
7522
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
7523
|
-
* field edit instead of when editing is finished by using
|
|
7523
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
7524
7524
|
*/
|
|
7525
7525
|
instantUpdate?: boolean
|
|
7526
7526
|
/**
|
|
@@ -7705,7 +7705,7 @@ type NumberColumnConfig = {
|
|
|
7705
7705
|
*/
|
|
7706
7706
|
responsiveLevels?: object
|
|
7707
7707
|
/**
|
|
7708
|
-
* Setting this option means that pressing the
|
|
7708
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
7709
7709
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
7710
7710
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
7711
7711
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -8294,7 +8294,7 @@ type PercentColumnConfig = {
|
|
|
8294
8294
|
id?: string|number
|
|
8295
8295
|
/**
|
|
8296
8296
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
8297
|
-
* field edit instead of when editing is finished by using
|
|
8297
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
8298
8298
|
*/
|
|
8299
8299
|
instantUpdate?: boolean
|
|
8300
8300
|
/**
|
|
@@ -8489,7 +8489,7 @@ type PercentColumnConfig = {
|
|
|
8489
8489
|
*/
|
|
8490
8490
|
responsiveLevels?: object
|
|
8491
8491
|
/**
|
|
8492
|
-
* Setting this option means that pressing the
|
|
8492
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
8493
8493
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
8494
8494
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
8495
8495
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -9077,7 +9077,7 @@ type RatingColumnConfig = {
|
|
|
9077
9077
|
id?: string|number
|
|
9078
9078
|
/**
|
|
9079
9079
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
9080
|
-
* field edit instead of when editing is finished by using
|
|
9080
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
9081
9081
|
*/
|
|
9082
9082
|
instantUpdate?: boolean
|
|
9083
9083
|
/**
|
|
@@ -9262,7 +9262,7 @@ type RatingColumnConfig = {
|
|
|
9262
9262
|
*/
|
|
9263
9263
|
responsiveLevels?: object
|
|
9264
9264
|
/**
|
|
9265
|
-
* Setting this option means that pressing the
|
|
9265
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
9266
9266
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
9267
9267
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
9268
9268
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -10435,7 +10435,7 @@ type SparklineColumnConfig = {
|
|
|
10435
10435
|
id?: string|number
|
|
10436
10436
|
/**
|
|
10437
10437
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
10438
|
-
* field edit instead of when editing is finished by using
|
|
10438
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
10439
10439
|
*/
|
|
10440
10440
|
instantUpdate?: boolean
|
|
10441
10441
|
/**
|
|
@@ -10611,7 +10611,7 @@ type SparklineColumnConfig = {
|
|
|
10611
10611
|
*/
|
|
10612
10612
|
responsiveLevels?: object
|
|
10613
10613
|
/**
|
|
10614
|
-
* Setting this option means that pressing the
|
|
10614
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
10615
10615
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
10616
10616
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
10617
10617
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -11149,7 +11149,7 @@ type TemplateColumnConfig = {
|
|
|
11149
11149
|
id?: string|number
|
|
11150
11150
|
/**
|
|
11151
11151
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
11152
|
-
* field edit instead of when editing is finished by using
|
|
11152
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
11153
11153
|
*/
|
|
11154
11154
|
instantUpdate?: boolean
|
|
11155
11155
|
/**
|
|
@@ -11321,7 +11321,7 @@ type TemplateColumnConfig = {
|
|
|
11321
11321
|
*/
|
|
11322
11322
|
responsiveLevels?: object
|
|
11323
11323
|
/**
|
|
11324
|
-
* Setting this option means that pressing the
|
|
11324
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
11325
11325
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
11326
11326
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
11327
11327
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -11878,7 +11878,7 @@ type TimeColumnConfig = {
|
|
|
11878
11878
|
id?: string|number
|
|
11879
11879
|
/**
|
|
11880
11880
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
11881
|
-
* field edit instead of when editing is finished by using
|
|
11881
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
11882
11882
|
*/
|
|
11883
11883
|
instantUpdate?: boolean
|
|
11884
11884
|
/**
|
|
@@ -12050,7 +12050,7 @@ type TimeColumnConfig = {
|
|
|
12050
12050
|
*/
|
|
12051
12051
|
responsiveLevels?: object
|
|
12052
12052
|
/**
|
|
12053
|
-
* Setting this option means that pressing the
|
|
12053
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
12054
12054
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
12055
12055
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
12056
12056
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -12616,7 +12616,7 @@ type TreeColumnConfig = {
|
|
|
12616
12616
|
indentSize?: number
|
|
12617
12617
|
/**
|
|
12618
12618
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
12619
|
-
* field edit instead of when editing is finished by using
|
|
12619
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
12620
12620
|
*/
|
|
12621
12621
|
instantUpdate?: boolean
|
|
12622
12622
|
/**
|
|
@@ -12792,7 +12792,7 @@ type TreeColumnConfig = {
|
|
|
12792
12792
|
*/
|
|
12793
12793
|
responsiveLevels?: object
|
|
12794
12794
|
/**
|
|
12795
|
-
* Setting this option means that pressing the
|
|
12795
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
12796
12796
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
12797
12797
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
12798
12798
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -13369,7 +13369,7 @@ type WidgetColumnConfig = {
|
|
|
13369
13369
|
id?: string|number
|
|
13370
13370
|
/**
|
|
13371
13371
|
* Set to `true` to have the [CellEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit) feature update the record being edited live upon
|
|
13372
|
-
* field edit instead of when editing is finished by using
|
|
13372
|
+
* field edit instead of when editing is finished by using <kbd>Tab</kbd> or <kbd>Enter</kbd>
|
|
13373
13373
|
*/
|
|
13374
13374
|
instantUpdate?: boolean
|
|
13375
13375
|
/**
|
|
@@ -13545,7 +13545,7 @@ type WidgetColumnConfig = {
|
|
|
13545
13545
|
*/
|
|
13546
13546
|
responsiveLevels?: object
|
|
13547
13547
|
/**
|
|
13548
|
-
* Setting this option means that pressing the
|
|
13548
|
+
* Setting this option means that pressing the <kbd>Escape</kbd> key after editing the field will
|
|
13549
13549
|
* revert the field to the value it had when the edit began. If the value is *not* changed
|
|
13550
13550
|
* from when the edit started, the input field's [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
13551
13551
|
* behaviour will be activated. Finally, the edit will be canceled.
|
|
@@ -16238,7 +16238,7 @@ export class CellEdit extends GridEditBase {
|
|
|
16238
16238
|
/**
|
|
16239
16239
|
* Displays an OK / Cancel confirmation dialog box owned by the current Editor. This is intended to be
|
|
16240
16240
|
* used by [finalizeCellEdit](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-finalizeCellEdit) implementations. The returned promise resolves passing
|
|
16241
|
-
* `true` if the "OK" button is pressed, and `false` if the "Cancel" button is pressed. Typing
|
|
16241
|
+
* `true` if the "OK" button is pressed, and `false` if the "Cancel" button is pressed. Typing <kbd>Escape</kbd> rejects.
|
|
16242
16242
|
* @param {object} options An options object for what to show.
|
|
16243
16243
|
*/
|
|
16244
16244
|
confirm(options: {
|
|
@@ -16502,7 +16502,7 @@ type CellMenuConfig = {
|
|
|
16502
16502
|
|
|
16503
16503
|
/**
|
|
16504
16504
|
* Right click to display context menu for cells. To invoke the cell menu in a keyboard-accessible manner, use the
|
|
16505
|
-
*
|
|
16505
|
+
* <kbd>Space</kbd> key when the cell is focused.
|
|
16506
16506
|
* ...
|
|
16507
16507
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellMenu)
|
|
16508
16508
|
*/
|
|
@@ -16775,7 +16775,7 @@ type CellTooltipConfig = {
|
|
|
16775
16775
|
*/
|
|
16776
16776
|
closeAction?: 'hide'|'destroy'
|
|
16777
16777
|
/**
|
|
16778
|
-
* Close popup when
|
|
16778
|
+
* Close popup when <kbd>Escape</kbd> key is pressed.
|
|
16779
16779
|
*/
|
|
16780
16780
|
closeOnEscape?: boolean
|
|
16781
16781
|
/**
|
|
@@ -20387,8 +20387,8 @@ type GroupConfig = {
|
|
|
20387
20387
|
|
|
20388
20388
|
/**
|
|
20389
20389
|
* Enables rendering and handling of row groups. The actual grouping is done in the store, but triggered by
|
|
20390
|
-
* <kbd>
|
|
20391
|
-
* one anywhere on grid). Use <kbd>
|
|
20390
|
+
* <kbd>Shift</kbd> + clicking headers, or by using the context menu, or by using two finger tap (one on header,
|
|
20391
|
+
* one anywhere on grid). Use <kbd>Shift</kbd> + <kbd>Alt</kbd> + click, or the context menu, to remove a column
|
|
20392
20392
|
* grouper.
|
|
20393
20393
|
* ...
|
|
20394
20394
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/Group)
|
|
@@ -25670,10 +25670,10 @@ type TreeGroupConfig = {
|
|
|
25670
25670
|
*/
|
|
25671
25671
|
parentCls?: string
|
|
25672
25672
|
/**
|
|
25673
|
-
* A function letting you format the text shown in the generated parent group levels. This method will be
|
|
25674
|
-
* with the value produced by the column representing the grouped level. Each column's renderer method
|
|
25675
|
-
* provided an extra `isTreeGroup` param to indicate that the value will be used for a generated parent.
|
|
25676
|
-
* and other DOM specific args will be in the context of the tree column.
|
|
25673
|
+
* A function letting you format the text shown in the generated parent group levels. This method will be
|
|
25674
|
+
* provided with the value produced by the column representing the grouped level. Each column's renderer method
|
|
25675
|
+
* will be provided an extra `isTreeGroup` param to indicate that the value will be used for a generated parent.
|
|
25676
|
+
* `cellElement` and other DOM specific args will be in the context of the tree column.
|
|
25677
25677
|
* ...
|
|
25678
25678
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup#config-parentRenderer)
|
|
25679
25679
|
* @param {object} data The rendering data representing the generated tree parent record
|
|
@@ -26827,7 +26827,7 @@ type ExcelExporterConfig = {
|
|
|
26827
26827
|
*/
|
|
26828
26828
|
localizableProperties?: string[]
|
|
26829
26829
|
/**
|
|
26830
|
-
* This hook allows
|
|
26830
|
+
* This hook allows using 3rd party libraries to generate XLSX files.
|
|
26831
26831
|
* ...
|
|
26832
26832
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-xlsProvider)
|
|
26833
26833
|
*/
|
|
@@ -29322,7 +29322,7 @@ type SinglePageUnscaledExporterConfig = {
|
|
|
29322
29322
|
|
|
29323
29323
|
/**
|
|
29324
29324
|
* A single page exporter. Used by the [PdfExport](https://bryntum.com/products/grid/docs/api/Grid/feature/export/PdfExport) feature to export to single page. Content
|
|
29325
|
-
* is exported with dimensions required to fit all requested rows and columns. This allows
|
|
29325
|
+
* is exported with dimensions required to fit all requested rows and columns. This allows generating a PDF page not
|
|
29326
29326
|
* constrained by the standard paper formats.
|
|
29327
29327
|
* ...
|
|
29328
29328
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/feature/export/exporter/SinglePageUnscaledExporter)
|
|
@@ -29732,7 +29732,7 @@ type GridListenersTypes = {
|
|
|
29732
29732
|
*/
|
|
29733
29733
|
beforeCellEditStart: (event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void
|
|
29734
29734
|
/**
|
|
29735
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
29735
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
29736
29736
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
29737
29737
|
* @param {object} event Event object
|
|
29738
29738
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -30697,6 +30697,14 @@ type GridListenersTypes = {
|
|
|
30697
30697
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
30698
30698
|
*/
|
|
30699
30699
|
toolClick: (event: { source: Tool, tool: Tool }) => void
|
|
30700
|
+
/**
|
|
30701
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
30702
|
+
* @param {object} event Event object
|
|
30703
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
30704
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
30705
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
30706
|
+
*/
|
|
30707
|
+
treeGroup: (event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void
|
|
30700
30708
|
/**
|
|
30701
30709
|
* Fires when row locking is disabled.
|
|
30702
30710
|
* @param {object} event Event object
|
|
@@ -30751,7 +30759,7 @@ type GridListeners = {
|
|
|
30751
30759
|
*/
|
|
30752
30760
|
beforeCellEditStart?: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
30753
30761
|
/**
|
|
30754
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
30762
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
30755
30763
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
30756
30764
|
* @param {object} event Event object
|
|
30757
30765
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -31716,6 +31724,14 @@ type GridListeners = {
|
|
|
31716
31724
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
31717
31725
|
*/
|
|
31718
31726
|
toolClick?: ((event: { source: Tool, tool: Tool }) => void)|string
|
|
31727
|
+
/**
|
|
31728
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
31729
|
+
* @param {object} event Event object
|
|
31730
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
31731
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
31732
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
31733
|
+
*/
|
|
31734
|
+
treeGroup?: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
31719
31735
|
/**
|
|
31720
31736
|
* Fires when row locking is disabled.
|
|
31721
31737
|
* @param {object} event Event object
|
|
@@ -32380,7 +32396,7 @@ type GridConfig = {
|
|
|
32380
32396
|
rootElement?: ShadowRoot|HTMLElement
|
|
32381
32397
|
/**
|
|
32382
32398
|
* Row height in pixels. This allows the default height for rows to be controlled. Note that it may be
|
|
32383
|
-
*
|
|
32399
|
+
* overridden by specifying a [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from
|
|
32384
32400
|
* a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).
|
|
32385
32401
|
* ...
|
|
32386
32402
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-rowHeight)
|
|
@@ -32611,7 +32627,7 @@ type GridConfig = {
|
|
|
32611
32627
|
*/
|
|
32612
32628
|
onBeforeCellEditStart?: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
32613
32629
|
/**
|
|
32614
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
32630
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
32615
32631
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
32616
32632
|
* @param {object} event Event object
|
|
32617
32633
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -33576,6 +33592,14 @@ type GridConfig = {
|
|
|
33576
33592
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
33577
33593
|
*/
|
|
33578
33594
|
onToolClick?: ((event: { source: Tool, tool: Tool }) => void)|string
|
|
33595
|
+
/**
|
|
33596
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
33597
|
+
* @param {object} event Event object
|
|
33598
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
33599
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
33600
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
33601
|
+
*/
|
|
33602
|
+
onTreeGroup?: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
33579
33603
|
/**
|
|
33580
33604
|
* Fires when row locking is disabled.
|
|
33581
33605
|
* @param {object} event Event object
|
|
@@ -33849,7 +33873,7 @@ type GridBaseListenersTypes = {
|
|
|
33849
33873
|
*/
|
|
33850
33874
|
beforeCellEditStart: (event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void
|
|
33851
33875
|
/**
|
|
33852
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
33876
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
33853
33877
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
33854
33878
|
* @param {object} event Event object
|
|
33855
33879
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -34814,6 +34838,14 @@ type GridBaseListenersTypes = {
|
|
|
34814
34838
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
34815
34839
|
*/
|
|
34816
34840
|
toolClick: (event: { source: Tool, tool: Tool }) => void
|
|
34841
|
+
/**
|
|
34842
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
34843
|
+
* @param {object} event Event object
|
|
34844
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
34845
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
34846
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
34847
|
+
*/
|
|
34848
|
+
treeGroup: (event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void
|
|
34817
34849
|
/**
|
|
34818
34850
|
* Fires when row locking is disabled.
|
|
34819
34851
|
* @param {object} event Event object
|
|
@@ -34868,7 +34900,7 @@ type GridBaseListeners = {
|
|
|
34868
34900
|
*/
|
|
34869
34901
|
beforeCellEditStart?: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
34870
34902
|
/**
|
|
34871
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
34903
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
34872
34904
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
34873
34905
|
* @param {object} event Event object
|
|
34874
34906
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -35833,6 +35865,14 @@ type GridBaseListeners = {
|
|
|
35833
35865
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
35834
35866
|
*/
|
|
35835
35867
|
toolClick?: ((event: { source: Tool, tool: Tool }) => void)|string
|
|
35868
|
+
/**
|
|
35869
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
35870
|
+
* @param {object} event Event object
|
|
35871
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
35872
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
35873
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
35874
|
+
*/
|
|
35875
|
+
treeGroup?: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
35836
35876
|
/**
|
|
35837
35877
|
* Fires when row locking is disabled.
|
|
35838
35878
|
* @param {object} event Event object
|
|
@@ -36496,7 +36536,7 @@ type GridBaseConfig = {
|
|
|
36496
36536
|
rootElement?: ShadowRoot|HTMLElement
|
|
36497
36537
|
/**
|
|
36498
36538
|
* Row height in pixels. This allows the default height for rows to be controlled. Note that it may be
|
|
36499
|
-
*
|
|
36539
|
+
* overridden by specifying a [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from
|
|
36500
36540
|
* a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).
|
|
36501
36541
|
* ...
|
|
36502
36542
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-rowHeight)
|
|
@@ -36727,7 +36767,7 @@ type GridBaseConfig = {
|
|
|
36727
36767
|
*/
|
|
36728
36768
|
onBeforeCellEditStart?: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
36729
36769
|
/**
|
|
36730
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
36770
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
36731
36771
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
36732
36772
|
* @param {object} event Event object
|
|
36733
36773
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -37692,6 +37732,14 @@ type GridBaseConfig = {
|
|
|
37692
37732
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
37693
37733
|
*/
|
|
37694
37734
|
onToolClick?: ((event: { source: Tool, tool: Tool }) => void)|string
|
|
37735
|
+
/**
|
|
37736
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
37737
|
+
* @param {object} event Event object
|
|
37738
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
37739
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
37740
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
37741
|
+
*/
|
|
37742
|
+
onTreeGroup?: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
37695
37743
|
/**
|
|
37696
37744
|
* Fires when row locking is disabled.
|
|
37697
37745
|
* @param {object} event Event object
|
|
@@ -37955,7 +38003,7 @@ export class GridBase extends Panel {
|
|
|
37955
38003
|
readonly responsiveLevel: string
|
|
37956
38004
|
/**
|
|
37957
38005
|
* Row height in pixels. This allows the default height for rows to be controlled. Note that it may be
|
|
37958
|
-
*
|
|
38006
|
+
* overridden by specifying a [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from
|
|
37959
38007
|
* a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).
|
|
37960
38008
|
*/
|
|
37961
38009
|
rowHeight: number
|
|
@@ -38075,7 +38123,7 @@ export class GridBase extends Panel {
|
|
|
38075
38123
|
*/
|
|
38076
38124
|
onBeforeCellEditStart: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
38077
38125
|
/**
|
|
38078
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
38126
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
38079
38127
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
38080
38128
|
* @param {object} event Event object
|
|
38081
38129
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -38904,6 +38952,14 @@ export class GridBase extends Panel {
|
|
|
38904
38952
|
* @param {boolean} event.collapse `true` if the node is being collapsed.
|
|
38905
38953
|
*/
|
|
38906
38954
|
onToggleNode: ((event: { record: Model, collapse: boolean }) => void)|string
|
|
38955
|
+
/**
|
|
38956
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
38957
|
+
* @param {object} event Event object
|
|
38958
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
38959
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
38960
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
38961
|
+
*/
|
|
38962
|
+
onTreeGroup: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
38907
38963
|
/**
|
|
38908
38964
|
* Fires when row locking is disabled.
|
|
38909
38965
|
* @param {object} event Event object
|
|
@@ -40394,7 +40450,7 @@ type TreeGridListenersTypes = {
|
|
|
40394
40450
|
*/
|
|
40395
40451
|
beforeCellEditStart: (event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void
|
|
40396
40452
|
/**
|
|
40397
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
40453
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
40398
40454
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
40399
40455
|
* @param {object} event Event object
|
|
40400
40456
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -41359,6 +41415,14 @@ type TreeGridListenersTypes = {
|
|
|
41359
41415
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
41360
41416
|
*/
|
|
41361
41417
|
toolClick: (event: { source: Tool, tool: Tool }) => void
|
|
41418
|
+
/**
|
|
41419
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
41420
|
+
* @param {object} event Event object
|
|
41421
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
41422
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
41423
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
41424
|
+
*/
|
|
41425
|
+
treeGroup: (event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void
|
|
41362
41426
|
/**
|
|
41363
41427
|
* Fires when row locking is disabled.
|
|
41364
41428
|
* @param {object} event Event object
|
|
@@ -41413,7 +41477,7 @@ type TreeGridListeners = {
|
|
|
41413
41477
|
*/
|
|
41414
41478
|
beforeCellEditStart?: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
41415
41479
|
/**
|
|
41416
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
41480
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
41417
41481
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
41418
41482
|
* @param {object} event Event object
|
|
41419
41483
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -42378,6 +42442,14 @@ type TreeGridListeners = {
|
|
|
42378
42442
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
42379
42443
|
*/
|
|
42380
42444
|
toolClick?: ((event: { source: Tool, tool: Tool }) => void)|string
|
|
42445
|
+
/**
|
|
42446
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
42447
|
+
* @param {object} event Event object
|
|
42448
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
42449
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
42450
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
42451
|
+
*/
|
|
42452
|
+
treeGroup?: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
42381
42453
|
/**
|
|
42382
42454
|
* Fires when row locking is disabled.
|
|
42383
42455
|
* @param {object} event Event object
|
|
@@ -43042,7 +43114,7 @@ type TreeGridConfig = {
|
|
|
43042
43114
|
rootElement?: ShadowRoot|HTMLElement
|
|
43043
43115
|
/**
|
|
43044
43116
|
* Row height in pixels. This allows the default height for rows to be controlled. Note that it may be
|
|
43045
|
-
*
|
|
43117
|
+
* overridden by specifying a [rowHeight](https://bryntum.com/products/grid/docs/api/Grid/data/GridRowModel#field-rowHeight) on a per record basis, or from
|
|
43046
43118
|
* a column [renderer](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-renderer).
|
|
43047
43119
|
* ...
|
|
43048
43120
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-rowHeight)
|
|
@@ -43273,7 +43345,7 @@ type TreeGridConfig = {
|
|
|
43273
43345
|
*/
|
|
43274
43346
|
onBeforeCellEditStart?: ((event: { source: Grid, editorContext: CellEditorContext }) => Promise<boolean>|boolean|void)|string
|
|
43275
43347
|
/**
|
|
43276
|
-
* Fires on the owning Grid before deleting a range of selected cell values by pressing
|
|
43348
|
+
* Fires on the owning Grid before deleting a range of selected cell values by pressing <kbd>Backspace</kbd> or <kbd>Delete</kbd>
|
|
43277
43349
|
* buttons while [autoEdit](https://bryntum.com/products/grid/docs/api/Grid/feature/CellEdit#config-autoEdit) is set to `true`. Return `false` to prevent editing.
|
|
43278
43350
|
* @param {object} event Event object
|
|
43279
43351
|
* @param {Grid.view.Grid} event.source Owner grid
|
|
@@ -44238,6 +44310,14 @@ type TreeGridConfig = {
|
|
|
44238
44310
|
* @param {Core.widget.Tool} event.tool The tool which is being clicked.
|
|
44239
44311
|
*/
|
|
44240
44312
|
onToolClick?: ((event: { source: Tool, tool: Tool }) => void)|string
|
|
44313
|
+
/**
|
|
44314
|
+
* Fired on the owning Grid/Scheduler/Gantt after tree grouping levels change
|
|
44315
|
+
* @param {object} event Event object
|
|
44316
|
+
* @param {Grid.view.Grid} event.source The grid instance
|
|
44317
|
+
* @param {(string|Function)[]} event.groupers Array of field names or functions representing the current grouping levels
|
|
44318
|
+
* @param {(string|Function)[]} event.oldGroupers Array of field names or functions representing the previous grouping levels
|
|
44319
|
+
*/
|
|
44320
|
+
onTreeGroup?: ((event: { source: Grid, groupers: (string|Function)[], oldGroupers: (string|Function)[] }) => void)|string
|
|
44241
44321
|
/**
|
|
44242
44322
|
* Fires when row locking is disabled.
|
|
44243
44323
|
* @param {object} event Event object
|
|
@@ -44983,7 +45063,7 @@ type ExportDialogConfig = {
|
|
|
44983
45063
|
*/
|
|
44984
45064
|
closeAction?: 'hide'|'destroy'
|
|
44985
45065
|
/**
|
|
44986
|
-
* Close popup when
|
|
45066
|
+
* Close popup when <kbd>Escape</kbd> key is pressed.
|
|
44987
45067
|
*/
|
|
44988
45068
|
closeOnEscape?: boolean
|
|
44989
45069
|
/**
|
|
@@ -47434,7 +47514,7 @@ type AIFilterFieldConfig = {
|
|
|
47434
47514
|
required?: boolean
|
|
47435
47515
|
/**
|
|
47436
47516
|
* If this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing
|
|
47437
|
-
* the
|
|
47517
|
+
* the <kbd>Escape</kbd> key after editing the field will revert the field to the value it had when
|
|
47438
47518
|
* the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
47439
47519
|
* behaviour will be activated.
|
|
47440
47520
|
*/
|
|
@@ -48293,7 +48373,7 @@ type ChecklistFilterComboConfig = {
|
|
|
48293
48373
|
contentElementCls?: string|object
|
|
48294
48374
|
/**
|
|
48295
48375
|
* If configured as `true`, this means that when an unmatched string is typed into the
|
|
48296
|
-
* combo's input field, and
|
|
48376
|
+
* combo's input field, and <kbd>Enter</kbd>, or the [multiValueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,
|
|
48297
48377
|
* a new record will be created using the typed string as the [displayField](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-displayField).
|
|
48298
48378
|
* ...
|
|
48299
48379
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-createOnUnmatched)
|
|
@@ -48793,7 +48873,7 @@ type ChecklistFilterComboConfig = {
|
|
|
48793
48873
|
required?: boolean
|
|
48794
48874
|
/**
|
|
48795
48875
|
* If this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing
|
|
48796
|
-
* the
|
|
48876
|
+
* the <kbd>Escape</kbd> key after editing the field will revert the field to the value it had when
|
|
48797
48877
|
* the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
48798
48878
|
* behaviour will be activated.
|
|
48799
48879
|
*/
|
|
@@ -53107,7 +53187,7 @@ type GroupBarConfig = {
|
|
|
53107
53187
|
*/
|
|
53108
53188
|
title?: string
|
|
53109
53189
|
/**
|
|
53110
|
-
* Select/deselect all if
|
|
53190
|
+
* Select/deselect all if <kbd>Cmd</kbd>/<kbd>Ctrl</kbd> is pressed when clicking
|
|
53111
53191
|
*/
|
|
53112
53192
|
toggleAllIfCtrlPressed?: boolean
|
|
53113
53193
|
/**
|
|
@@ -53867,7 +53947,7 @@ type TreeComboConfig = {
|
|
|
53867
53947
|
contentElementCls?: string|object
|
|
53868
53948
|
/**
|
|
53869
53949
|
* If configured as `true`, this means that when an unmatched string is typed into the
|
|
53870
|
-
* combo's input field, and
|
|
53950
|
+
* combo's input field, and <kbd>Enter</kbd>, or the [multiValueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-multiValueSeparator) is typed,
|
|
53871
53951
|
* a new record will be created using the typed string as the [displayField](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-displayField).
|
|
53872
53952
|
* ...
|
|
53873
53953
|
* [View online docs...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-createOnUnmatched)
|
|
@@ -54367,7 +54447,7 @@ type TreeComboConfig = {
|
|
|
54367
54447
|
required?: boolean
|
|
54368
54448
|
/**
|
|
54369
54449
|
* If this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly), then setting this option means that pressing
|
|
54370
|
-
* the
|
|
54450
|
+
* the <kbd>Escape</kbd> key after editing the field will revert the field to the value it had when
|
|
54371
54451
|
* the user focused the field. If the field is *not* changed from when focused, the [clearable](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
54372
54452
|
* behaviour will be activated.
|
|
54373
54453
|
*/
|