@bryntum/grid-trial 7.3.3 → 7.3.5
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/AGENTS.md +80 -0
- package/CLAUDE.md +80 -0
- package/grid.css +1 -1
- package/grid.d.ts +1232 -88
- package/grid.module.js +40 -40
- package/grid.thin.d.ts +199 -58
- package/grid.umd.js +48 -48
- 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/package.json +1 -1
package/grid.d.ts
CHANGED
|
@@ -1012,7 +1012,7 @@ type LocaleKeys = {
|
|
|
1012
1012
|
/**
|
|
1013
1013
|
* localization key
|
|
1014
1014
|
*/
|
|
1015
|
-
[key: string]: string|number|Function|LocaleKeys|object
|
|
1015
|
+
[key: string]: string|number|boolean|Function|LocaleKeys|object
|
|
1016
1016
|
}
|
|
1017
1017
|
|
|
1018
1018
|
/**
|
|
@@ -1033,6 +1033,10 @@ type Locale = LocaleKeys & {
|
|
|
1033
1033
|
* For example: `'en'` or `'en_US'`
|
|
1034
1034
|
*/
|
|
1035
1035
|
localeCode?: string
|
|
1036
|
+
/**
|
|
1037
|
+
* Whether the locale is right-to-left. For example: `true` for Arabic and Hebrew
|
|
1038
|
+
*/
|
|
1039
|
+
localeRtl?: boolean
|
|
1036
1040
|
/**
|
|
1037
1041
|
* Locale path for asynchronous loading using
|
|
1038
1042
|
* AjaxHelper [get](https://bryntum.com/products/grid/docs/api/Core/helper/AjaxHelper#function-get-static) request
|
|
@@ -1462,15 +1466,23 @@ type CellWidgetContext = {
|
|
|
1462
1466
|
record: Model
|
|
1463
1467
|
}
|
|
1464
1468
|
|
|
1469
|
+
/**
|
|
1470
|
+
* Describes the [overflowTwinConfig](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-overflowTwinConfig) config: either a config object whose
|
|
1471
|
+
* properties override the generated config of a widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s overflow menu,
|
|
1472
|
+
* or a function customizing that generated config.
|
|
1473
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#typedef-OverflowTwinConfig)
|
|
1474
|
+
*/
|
|
1475
|
+
type OverflowTwinConfig = ContainerItemConfig|((config: ContainerItemConfig) => ContainerItemConfig|void)
|
|
1476
|
+
|
|
1465
1477
|
/**
|
|
1466
1478
|
* An object representing a series settings.
|
|
1467
1479
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#typedef-HistogramSeries)
|
|
1468
1480
|
*/
|
|
1469
1481
|
type HistogramSeries = {
|
|
1470
1482
|
/**
|
|
1471
|
-
* The series type specifying how it is rendered
|
|
1483
|
+
* The series type specifying how it is rendered (defaults to `'bar'`):
|
|
1472
1484
|
*/
|
|
1473
|
-
type
|
|
1485
|
+
type?: 'bar'|'outline'|'text'
|
|
1474
1486
|
/**
|
|
1475
1487
|
* The name of the property to read value from. By default, this matches the series
|
|
1476
1488
|
* identifier.
|
|
@@ -1481,6 +1493,17 @@ type HistogramSeries = {
|
|
|
1481
1493
|
* Applicable to `bar` type series only.
|
|
1482
1494
|
*/
|
|
1483
1495
|
stretch?: boolean
|
|
1496
|
+
/**
|
|
1497
|
+
* Aggregation strategy used when building histogram data for
|
|
1498
|
+
* group rows. Pass `'none'` to disable automatic aggregation when the consuming view aggregates the values
|
|
1499
|
+
* manually. Other strategies are interpreted by the histogram subclass implementation.
|
|
1500
|
+
*/
|
|
1501
|
+
aggregate?: 'none'|'sum'|'avg'|string
|
|
1502
|
+
/**
|
|
1503
|
+
* Set to `true` to hide this series in the histogram. Useful when several
|
|
1504
|
+
* series are defined and the visible set is toggled at runtime.
|
|
1505
|
+
*/
|
|
1506
|
+
disabled?: boolean
|
|
1484
1507
|
/**
|
|
1485
1508
|
* The series identifier. When configuring the series this value is automatically taken from
|
|
1486
1509
|
* the key name the series is provided. In the example code below, the series `id` will be set to `salary`:
|
|
@@ -1781,6 +1804,16 @@ type ExportConfig = {
|
|
|
1781
1804
|
* Set to true to output as a CSV file, or as an object where you can specify delimiters.
|
|
1782
1805
|
*/
|
|
1783
1806
|
csv?: boolean|object
|
|
1807
|
+
/**
|
|
1808
|
+
* MIME type used when creating the CSV Blob. Defaults to `text/csv`. Use
|
|
1809
|
+
* `application/octet-stream` in Salesforce LWS environments.
|
|
1810
|
+
*/
|
|
1811
|
+
csvMimeType?: string
|
|
1812
|
+
/**
|
|
1813
|
+
* MIME type used when creating the XLSX download Blob. Use
|
|
1814
|
+
* `application/octet-stream` in Salesforce LWS environments.
|
|
1815
|
+
*/
|
|
1816
|
+
xlsxMimeType?: string
|
|
1784
1817
|
}
|
|
1785
1818
|
|
|
1786
1819
|
type XLSColumn = {
|
|
@@ -5176,7 +5209,11 @@ export class Model extends Base {
|
|
|
5176
5209
|
*/
|
|
5177
5210
|
isFullyLoaded: boolean
|
|
5178
5211
|
/**
|
|
5179
|
-
* Returns true for a group
|
|
5212
|
+
* Returns `true` for a group footer record
|
|
5213
|
+
*/
|
|
5214
|
+
readonly isGroupFooter: boolean
|
|
5215
|
+
/**
|
|
5216
|
+
* Returns `true` for a group header record
|
|
5180
5217
|
*/
|
|
5181
5218
|
readonly isGroupHeader: boolean
|
|
5182
5219
|
/**
|
|
@@ -8151,6 +8188,14 @@ type ArrayDataFieldConfig = {
|
|
|
8151
8188
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/ArrayDataField#config-complexMapping)
|
|
8152
8189
|
*/
|
|
8153
8190
|
complexMapping?: boolean
|
|
8191
|
+
/**
|
|
8192
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
8193
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/ArrayDataField#config-convert)
|
|
8194
|
+
* @param {any} value The value to convert for storage in a record.
|
|
8195
|
+
* @param {object} data The raw record data object
|
|
8196
|
+
* @returns {any} The converted value.
|
|
8197
|
+
*/
|
|
8198
|
+
convert?: (value: any, data: object) => any
|
|
8154
8199
|
/**
|
|
8155
8200
|
* The property in a record's data object that contains the field's value.
|
|
8156
8201
|
* Defaults to the field's `name`.
|
|
@@ -8208,6 +8253,14 @@ type ArrayDataFieldConfig = {
|
|
|
8208
8253
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
8209
8254
|
*/
|
|
8210
8255
|
readOnly?: boolean
|
|
8256
|
+
/**
|
|
8257
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
8258
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/ArrayDataField#config-serialize)
|
|
8259
|
+
* @param {any} value The value to serialize
|
|
8260
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
8261
|
+
* @returns {any} The serialized value.
|
|
8262
|
+
*/
|
|
8263
|
+
serialize?: (value: any, record: Model) => any
|
|
8211
8264
|
}
|
|
8212
8265
|
|
|
8213
8266
|
/**
|
|
@@ -8276,6 +8329,14 @@ type BooleanDataFieldConfig = {
|
|
|
8276
8329
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/BooleanDataField#config-complexMapping)
|
|
8277
8330
|
*/
|
|
8278
8331
|
complexMapping?: boolean
|
|
8332
|
+
/**
|
|
8333
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
8334
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/BooleanDataField#config-convert)
|
|
8335
|
+
* @param {any} value The value to convert for storage in a record.
|
|
8336
|
+
* @param {object} data The raw record data object
|
|
8337
|
+
* @returns {any} The converted value.
|
|
8338
|
+
*/
|
|
8339
|
+
convert?: (value: any, data: object) => any
|
|
8279
8340
|
/**
|
|
8280
8341
|
* The property in a record's data object that contains the field's value.
|
|
8281
8342
|
* Defaults to the field's `name`.
|
|
@@ -8334,6 +8395,14 @@ type BooleanDataFieldConfig = {
|
|
|
8334
8395
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
8335
8396
|
*/
|
|
8336
8397
|
readOnly?: boolean
|
|
8398
|
+
/**
|
|
8399
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
8400
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/BooleanDataField#config-serialize)
|
|
8401
|
+
* @param {any} value The value to serialize
|
|
8402
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
8403
|
+
* @returns {any} The serialized value.
|
|
8404
|
+
*/
|
|
8405
|
+
serialize?: (value: any, record: Model) => any
|
|
8337
8406
|
}
|
|
8338
8407
|
|
|
8339
8408
|
/**
|
|
@@ -8406,6 +8475,14 @@ type DataFieldConfig = {
|
|
|
8406
8475
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DataField#config-complexMapping)
|
|
8407
8476
|
*/
|
|
8408
8477
|
complexMapping?: boolean
|
|
8478
|
+
/**
|
|
8479
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
8480
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DataField#config-convert)
|
|
8481
|
+
* @param {any} value The value to convert for storage in a record.
|
|
8482
|
+
* @param {object} data The raw record data object
|
|
8483
|
+
* @returns {any} The converted value.
|
|
8484
|
+
*/
|
|
8485
|
+
convert?: (value: any, data: object) => any
|
|
8409
8486
|
/**
|
|
8410
8487
|
* The property in a record's data object that contains the field's value.
|
|
8411
8488
|
* Defaults to the field's `name`.
|
|
@@ -8463,6 +8540,14 @@ type DataFieldConfig = {
|
|
|
8463
8540
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
8464
8541
|
*/
|
|
8465
8542
|
readOnly?: boolean
|
|
8543
|
+
/**
|
|
8544
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
8545
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DataField#config-serialize)
|
|
8546
|
+
* @param {any} value The value to serialize
|
|
8547
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
8548
|
+
* @returns {any} The serialized value.
|
|
8549
|
+
*/
|
|
8550
|
+
serialize?: (value: any, record: Model) => any
|
|
8466
8551
|
}
|
|
8467
8552
|
|
|
8468
8553
|
/**
|
|
@@ -8567,6 +8652,14 @@ type DateDataFieldConfig = {
|
|
|
8567
8652
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DateDataField#config-complexMapping)
|
|
8568
8653
|
*/
|
|
8569
8654
|
complexMapping?: boolean
|
|
8655
|
+
/**
|
|
8656
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
8657
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DateDataField#config-convert)
|
|
8658
|
+
* @param {any} value The value to convert for storage in a record.
|
|
8659
|
+
* @param {object} data The raw record data object
|
|
8660
|
+
* @returns {any} The converted value.
|
|
8661
|
+
*/
|
|
8662
|
+
convert?: (value: any, data: object) => any
|
|
8570
8663
|
/**
|
|
8571
8664
|
* The property in a record's data object that contains the field's value.
|
|
8572
8665
|
* Defaults to the field's `name`.
|
|
@@ -8629,6 +8722,14 @@ type DateDataFieldConfig = {
|
|
|
8629
8722
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
8630
8723
|
*/
|
|
8631
8724
|
readOnly?: boolean
|
|
8725
|
+
/**
|
|
8726
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
8727
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DateDataField#config-serialize)
|
|
8728
|
+
* @param {any} value The value to serialize
|
|
8729
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
8730
|
+
* @returns {any} The serialized value.
|
|
8731
|
+
*/
|
|
8732
|
+
serialize?: (value: any, record: Model) => any
|
|
8632
8733
|
}
|
|
8633
8734
|
|
|
8634
8735
|
/**
|
|
@@ -8702,6 +8803,14 @@ type DurationUnitDataFieldConfig = {
|
|
|
8702
8803
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DurationUnitDataField#config-complexMapping)
|
|
8703
8804
|
*/
|
|
8704
8805
|
complexMapping?: boolean
|
|
8806
|
+
/**
|
|
8807
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
8808
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DurationUnitDataField#config-convert)
|
|
8809
|
+
* @param {any} value The value to convert for storage in a record.
|
|
8810
|
+
* @param {object} data The raw record data object
|
|
8811
|
+
* @returns {any} The converted value.
|
|
8812
|
+
*/
|
|
8813
|
+
convert?: (value: any, data: object) => any
|
|
8705
8814
|
/**
|
|
8706
8815
|
* The property in a record's data object that contains the field's value.
|
|
8707
8816
|
* Defaults to the field's `name`.
|
|
@@ -8759,6 +8868,14 @@ type DurationUnitDataFieldConfig = {
|
|
|
8759
8868
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
8760
8869
|
*/
|
|
8761
8870
|
readOnly?: boolean
|
|
8871
|
+
/**
|
|
8872
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
8873
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/DurationUnitDataField#config-serialize)
|
|
8874
|
+
* @param {any} value The value to serialize
|
|
8875
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
8876
|
+
* @returns {any} The serialized value.
|
|
8877
|
+
*/
|
|
8878
|
+
serialize?: (value: any, record: Model) => any
|
|
8762
8879
|
}
|
|
8763
8880
|
|
|
8764
8881
|
/**
|
|
@@ -8827,6 +8944,14 @@ type IntegerDataFieldConfig = {
|
|
|
8827
8944
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/IntegerDataField#config-complexMapping)
|
|
8828
8945
|
*/
|
|
8829
8946
|
complexMapping?: boolean
|
|
8947
|
+
/**
|
|
8948
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
8949
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/IntegerDataField#config-convert)
|
|
8950
|
+
* @param {any} value The value to convert for storage in a record.
|
|
8951
|
+
* @param {object} data The raw record data object
|
|
8952
|
+
* @returns {any} The converted value.
|
|
8953
|
+
*/
|
|
8954
|
+
convert?: (value: any, data: object) => any
|
|
8830
8955
|
/**
|
|
8831
8956
|
* The property in a record's data object that contains the field's value.
|
|
8832
8957
|
* Defaults to the field's `name`.
|
|
@@ -8888,6 +9013,14 @@ type IntegerDataFieldConfig = {
|
|
|
8888
9013
|
* The `Math` method to use to ensure fractional component is removed.
|
|
8889
9014
|
*/
|
|
8890
9015
|
rounding?: 'round'|'floor'|'ceil'
|
|
9016
|
+
/**
|
|
9017
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
9018
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/IntegerDataField#config-serialize)
|
|
9019
|
+
* @param {any} value The value to serialize
|
|
9020
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
9021
|
+
* @returns {any} The serialized value.
|
|
9022
|
+
*/
|
|
9023
|
+
serialize?: (value: any, record: Model) => any
|
|
8891
9024
|
}
|
|
8892
9025
|
|
|
8893
9026
|
/**
|
|
@@ -8961,6 +9094,14 @@ type NumberDataFieldConfig = {
|
|
|
8961
9094
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/NumberDataField#config-complexMapping)
|
|
8962
9095
|
*/
|
|
8963
9096
|
complexMapping?: boolean
|
|
9097
|
+
/**
|
|
9098
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
9099
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/NumberDataField#config-convert)
|
|
9100
|
+
* @param {any} value The value to convert for storage in a record.
|
|
9101
|
+
* @param {object} data The raw record data object
|
|
9102
|
+
* @returns {any} The converted value.
|
|
9103
|
+
*/
|
|
9104
|
+
convert?: (value: any, data: object) => any
|
|
8964
9105
|
/**
|
|
8965
9106
|
* The property in a record's data object that contains the field's value.
|
|
8966
9107
|
* Defaults to the field's `name`.
|
|
@@ -9023,6 +9164,14 @@ type NumberDataFieldConfig = {
|
|
|
9023
9164
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
9024
9165
|
*/
|
|
9025
9166
|
readOnly?: boolean
|
|
9167
|
+
/**
|
|
9168
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
9169
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/NumberDataField#config-serialize)
|
|
9170
|
+
* @param {any} value The value to serialize
|
|
9171
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
9172
|
+
* @returns {any} The serialized value.
|
|
9173
|
+
*/
|
|
9174
|
+
serialize?: (value: any, record: Model) => any
|
|
9026
9175
|
}
|
|
9027
9176
|
|
|
9028
9177
|
/**
|
|
@@ -9096,6 +9245,14 @@ type ObjectDataFieldConfig = {
|
|
|
9096
9245
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/ObjectDataField#config-complexMapping)
|
|
9097
9246
|
*/
|
|
9098
9247
|
complexMapping?: boolean
|
|
9248
|
+
/**
|
|
9249
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
9250
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/ObjectDataField#config-convert)
|
|
9251
|
+
* @param {any} value The value to convert for storage in a record.
|
|
9252
|
+
* @param {object} data The raw record data object
|
|
9253
|
+
* @returns {any} The converted value.
|
|
9254
|
+
*/
|
|
9255
|
+
convert?: (value: any, data: object) => any
|
|
9099
9256
|
/**
|
|
9100
9257
|
* The property in a record's data object that contains the field's value.
|
|
9101
9258
|
* Defaults to the field's `name`.
|
|
@@ -9153,6 +9310,14 @@ type ObjectDataFieldConfig = {
|
|
|
9153
9310
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
9154
9311
|
*/
|
|
9155
9312
|
readOnly?: boolean
|
|
9313
|
+
/**
|
|
9314
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
9315
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/ObjectDataField#config-serialize)
|
|
9316
|
+
* @param {any} value The value to serialize
|
|
9317
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
9318
|
+
* @returns {any} The serialized value.
|
|
9319
|
+
*/
|
|
9320
|
+
serialize?: (value: any, record: Model) => any
|
|
9156
9321
|
}
|
|
9157
9322
|
|
|
9158
9323
|
/**
|
|
@@ -9221,6 +9386,14 @@ type StoreDataFieldConfig = {
|
|
|
9221
9386
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField#config-complexMapping)
|
|
9222
9387
|
*/
|
|
9223
9388
|
complexMapping?: boolean
|
|
9389
|
+
/**
|
|
9390
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
9391
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField#config-convert)
|
|
9392
|
+
* @param {any} value The value to convert for storage in a record.
|
|
9393
|
+
* @param {object} data The raw record data object
|
|
9394
|
+
* @returns {any} The converted value.
|
|
9395
|
+
*/
|
|
9396
|
+
convert?: (value: any, data: object) => any
|
|
9224
9397
|
/**
|
|
9225
9398
|
* The property in a record's data object that contains the field's value.
|
|
9226
9399
|
* Defaults to the field's `name`.
|
|
@@ -9284,6 +9457,14 @@ type StoreDataFieldConfig = {
|
|
|
9284
9457
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
9285
9458
|
*/
|
|
9286
9459
|
readOnly?: boolean
|
|
9460
|
+
/**
|
|
9461
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
9462
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField#config-serialize)
|
|
9463
|
+
* @param {any} value The value to serialize
|
|
9464
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
9465
|
+
* @returns {any} The serialized value.
|
|
9466
|
+
*/
|
|
9467
|
+
serialize?: (value: any, record: Model) => any
|
|
9287
9468
|
/**
|
|
9288
9469
|
* Optional store configuration object to apply when creating the store.
|
|
9289
9470
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField#config-store)
|
|
@@ -9367,6 +9548,14 @@ type StringDataFieldConfig = {
|
|
|
9367
9548
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StringDataField#config-complexMapping)
|
|
9368
9549
|
*/
|
|
9369
9550
|
complexMapping?: boolean
|
|
9551
|
+
/**
|
|
9552
|
+
* A function which transforms a data value into the desired form for storage in the record's data object.
|
|
9553
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StringDataField#config-convert)
|
|
9554
|
+
* @param {any} value The value to convert for storage in a record.
|
|
9555
|
+
* @param {object} data The raw record data object
|
|
9556
|
+
* @returns {any} The converted value.
|
|
9557
|
+
*/
|
|
9558
|
+
convert?: (value: any, data: object) => any
|
|
9370
9559
|
/**
|
|
9371
9560
|
* The property in a record's data object that contains the field's value.
|
|
9372
9561
|
* Defaults to the field's `name`.
|
|
@@ -9424,6 +9613,14 @@ type StringDataFieldConfig = {
|
|
|
9424
9613
|
* Set to `true` for the field's set accessor to ignore attempts to set this field.
|
|
9425
9614
|
*/
|
|
9426
9615
|
readOnly?: boolean
|
|
9616
|
+
/**
|
|
9617
|
+
* A function which transforms a data value into the desired form for transmitting to a server.
|
|
9618
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/field/StringDataField#config-serialize)
|
|
9619
|
+
* @param {any} value The value to serialize
|
|
9620
|
+
* @param {Core.data.Model} record The record that contains the value being serialized.
|
|
9621
|
+
* @returns {any} The serialized value.
|
|
9622
|
+
*/
|
|
9623
|
+
serialize?: (value: any, record: Model) => any
|
|
9427
9624
|
}
|
|
9428
9625
|
|
|
9429
9626
|
/**
|
|
@@ -11322,6 +11519,12 @@ type StateTrackingManagerConfig = {
|
|
|
11322
11519
|
* Enables [revision](https://bryntum.com/products/grid/docs/api/Gantt/guides/revisions/overview.md) tracking by STM
|
|
11323
11520
|
*/
|
|
11324
11521
|
revisionsEnabled?: boolean
|
|
11522
|
+
/**
|
|
11523
|
+
* When enabled, [store type fields](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField) of tracked records are handled
|
|
11524
|
+
* granularly, both by this manager and by the fields themselves:
|
|
11525
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/data/stm/StateTrackingManager#config-trackStoreDataFields)
|
|
11526
|
+
*/
|
|
11527
|
+
trackStoreDataFields?: boolean
|
|
11325
11528
|
/**
|
|
11326
11529
|
* Fires before an object is destroyed.
|
|
11327
11530
|
* @param {object} event Event object
|
|
@@ -11465,7 +11668,9 @@ export class StateTrackingManager extends Base {
|
|
|
11465
11668
|
*/
|
|
11466
11669
|
readonly state: StateBase
|
|
11467
11670
|
/**
|
|
11468
|
-
* Gets
|
|
11671
|
+
* Gets the stores registered in STM. Does not include stores backing
|
|
11672
|
+
* [store type fields](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField), tracked when
|
|
11673
|
+
* [trackStoreDataFields](https://bryntum.com/products/grid/docs/api/Core/data/stm/StateTrackingManager#config-trackStoreDataFields) is enabled - see [allStores](#Core/data/stm/StateTrackingManager#property-allStores).
|
|
11469
11674
|
*/
|
|
11470
11675
|
readonly stores: Store[]
|
|
11471
11676
|
/**
|
|
@@ -11565,8 +11770,9 @@ export class StateTrackingManager extends Base {
|
|
|
11565
11770
|
/**
|
|
11566
11771
|
* Calls `fn` for each store registered in STM.
|
|
11567
11772
|
* @param {Function} fn (store, id) => ...
|
|
11773
|
+
* @param {boolean} [includeStoreFieldStores] Pass `true` to also iterate the stores backing [store type fields](https://bryntum.com/products/grid/docs/api/Core/data/field/StoreDataField), tracked when [trackStoreDataFields](https://bryntum.com/products/grid/docs/api/Core/data/stm/StateTrackingManager#config-trackStoreDataFields) is enabled
|
|
11568
11774
|
*/
|
|
11569
|
-
forEachStore(fn: () => void): void;
|
|
11775
|
+
forEachStore(fn: () => void, includeStoreFieldStores?: boolean): void;
|
|
11570
11776
|
/**
|
|
11571
11777
|
* Returns `true` if any listener is registered for the specified `eventName`, or if `null`, for any event.
|
|
11572
11778
|
* @param {string} [eventName] The event to test for listeners, or `null` for any event.
|
|
@@ -13914,6 +14120,10 @@ export class BrowserHelper {
|
|
|
13914
14120
|
* Checks if browser is Safari.
|
|
13915
14121
|
*/
|
|
13916
14122
|
static readonly isSafari: boolean
|
|
14123
|
+
/**
|
|
14124
|
+
* Determines if the user is using a touch device.
|
|
14125
|
+
*/
|
|
14126
|
+
static readonly isTouchDevice: boolean
|
|
13917
14127
|
/**
|
|
13918
14128
|
* Checks if browser is Webkit.
|
|
13919
14129
|
*/
|
|
@@ -14351,6 +14561,12 @@ export class DateHelper {
|
|
|
14351
14561
|
* @param {DurationUnit,string} [defaultUnit] Default unit to use if only magnitude passed
|
|
14352
14562
|
*/
|
|
14353
14563
|
static parseDuration(value: string, allowDecimals?: boolean, defaultUnit?: DurationUnit|string): DurationConfig;
|
|
14564
|
+
/**
|
|
14565
|
+
* A utility function to parse a sortable string to a date using the `'YYYY-MM-DD'` format.
|
|
14566
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#function-parseKey)
|
|
14567
|
+
* @param {string} key The string to return a date for
|
|
14568
|
+
*/
|
|
14569
|
+
static parseKey(key: string): Date;
|
|
14354
14570
|
/**
|
|
14355
14571
|
* Parses a typed unit name, for example `'ms'` or `'hr'` or `'yr'` into the
|
|
14356
14572
|
* canonical form of the unit name which may be passed to [add](https://bryntum.com/products/grid/docs/api/Core/helper/DateHelper#function-add-static)
|
|
@@ -14428,6 +14644,18 @@ export class DomHelper {
|
|
|
14428
14644
|
* you need to use [getThemeInfo](https://bryntum.com/products/grid/docs/api/Core/helper/DomHelper#function-getThemeInfo-static) and pass a context element.
|
|
14429
14645
|
*/
|
|
14430
14646
|
static readonly themeInfo: ThemeInfo
|
|
14647
|
+
/**
|
|
14648
|
+
* Dictionary of all theme keys and their labels.
|
|
14649
|
+
*/
|
|
14650
|
+
static readonly themeNames: Record<string, string>
|
|
14651
|
+
/**
|
|
14652
|
+
* Dictionary of all theme variants.
|
|
14653
|
+
*/
|
|
14654
|
+
static readonly themeVariants: Record<string, string>
|
|
14655
|
+
/**
|
|
14656
|
+
* Provides a dictionary of all available theme names and variants.
|
|
14657
|
+
*/
|
|
14658
|
+
static readonly themes: Record<string, string>
|
|
14431
14659
|
/**
|
|
14432
14660
|
* Set to `false` to not show focus renditions when using keyboard
|
|
14433
14661
|
*/
|
|
@@ -14526,8 +14754,9 @@ export class DomHelper {
|
|
|
14526
14754
|
* Resolves element from point, checking shadow DOM if required
|
|
14527
14755
|
* @param {number} x
|
|
14528
14756
|
* @param {number} y
|
|
14757
|
+
* @param {Document,ShadowRoot} [root] Root node to resolve from. Defaults to the document. Pass a widget's `documentRoot` to keep hit testing inside its shadow tree (required for LWC / Salesforce).
|
|
14529
14758
|
*/
|
|
14530
|
-
static elementFromPoint(x: number, y: number): HTMLElement;
|
|
14759
|
+
static elementFromPoint(x: number, y: number, root?: Document|ShadowRoot): HTMLElement;
|
|
14531
14760
|
/**
|
|
14532
14761
|
* Iterates over the direct child elements of the specified element.
|
|
14533
14762
|
* @param {HTMLElement} element Parent element
|
|
@@ -16061,6 +16290,11 @@ export class DataGenerator {
|
|
|
16061
16290
|
* Array with available food values
|
|
16062
16291
|
*/
|
|
16063
16292
|
static readonly foods: string[]
|
|
16293
|
+
/**
|
|
16294
|
+
* Array with hex color values, parallel to [colors](https://bryntum.com/products/grid/docs/api/Core/helper/util/DataGenerator#property-colors-static) (same length and
|
|
16295
|
+
* order). Use the index of a name in `colors` to look up its hex value here.
|
|
16296
|
+
*/
|
|
16297
|
+
static readonly hexColors: string[]
|
|
16064
16298
|
/**
|
|
16065
16299
|
* Array with available skill values
|
|
16066
16300
|
*/
|
|
@@ -16131,6 +16365,10 @@ export class DataGenerator {
|
|
|
16131
16365
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/helper/util/DomClassList)
|
|
16132
16366
|
*/
|
|
16133
16367
|
export class DomClassList {
|
|
16368
|
+
/**
|
|
16369
|
+
* The number of CSS class names in this `DomClassList`.
|
|
16370
|
+
*/
|
|
16371
|
+
readonly length: number
|
|
16134
16372
|
/**
|
|
16135
16373
|
* Get/set string value.
|
|
16136
16374
|
* Class names separated with space.
|
|
@@ -16145,6 +16383,12 @@ export class DomClassList {
|
|
|
16145
16383
|
* @param {string,object} classes The CSS classes as strings or objects.
|
|
16146
16384
|
*/
|
|
16147
16385
|
constructor(classes: string|object);
|
|
16386
|
+
/**
|
|
16387
|
+
* Converts a class name of any understood type to a desired form.
|
|
16388
|
+
* @param {string,string[],object,Set<any>,Map<any, any>,HTMLElement} cls
|
|
16389
|
+
* @param {string} as Pass `'object'` to return an object with the class names as its keys (all keys will have a value of `true`), or pass `'array'` to return an array of class names, or pass `'string'` (the default) to return a space-separated string of class names.
|
|
16390
|
+
*/
|
|
16391
|
+
static normalize(cls: string|string[]|object|Set<any>|Map<any, any>|HTMLElement, as?: string): string|string[]|object;
|
|
16148
16392
|
/**
|
|
16149
16393
|
* Add CSS class(es)
|
|
16150
16394
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/helper/util/DomClassList#function-add)
|
|
@@ -17121,7 +17365,99 @@ export class LocaleHelper {
|
|
|
17121
17365
|
static trimLocale(locale: object, toTrim: object): void;
|
|
17122
17366
|
}
|
|
17123
17367
|
|
|
17368
|
+
/**
|
|
17369
|
+
* Type with available listeners functions for [LocaleManager](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager) class.
|
|
17370
|
+
* Could be used for callbacks typings in TypeScript application.
|
|
17371
|
+
*/
|
|
17372
|
+
type LocaleManagerListenersTypes = {
|
|
17373
|
+
/**
|
|
17374
|
+
* Fires before an object is destroyed.
|
|
17375
|
+
* @param {object} event Event object
|
|
17376
|
+
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
17377
|
+
*/
|
|
17378
|
+
beforeDestroy: (event: { source: Base }) => void
|
|
17379
|
+
/**
|
|
17380
|
+
* Fires when any other event is fired from the object.
|
|
17381
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#event-catchAll)
|
|
17382
|
+
* @param {object} event Event object
|
|
17383
|
+
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
17384
|
+
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
17385
|
+
*/
|
|
17386
|
+
catchAll: (event: {[key: string]: any, type: string}) => void
|
|
17387
|
+
/**
|
|
17388
|
+
* Fires when an object is destroyed.
|
|
17389
|
+
* @param {object} event Event object
|
|
17390
|
+
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
17391
|
+
*/
|
|
17392
|
+
destroy: (event: { source: Base }) => void
|
|
17393
|
+
/**
|
|
17394
|
+
* Fires when a locale is applied
|
|
17395
|
+
* @param {object} event Event object
|
|
17396
|
+
* @param {typeof LocaleManager} event.source The Locale manager instance.
|
|
17397
|
+
* @param {Locale} event.locale Locale configuration
|
|
17398
|
+
* @param {string} event.locale.oldLocaleName The name (eg, `'En") of the previous locale which was replaced.
|
|
17399
|
+
* @param {string} event.locale.oldLocaleCode The code (eg, `'en-US") of the previous locale which was replaced.
|
|
17400
|
+
*/
|
|
17401
|
+
locale: (event: { source: typeof LocaleManager, locale: { oldLocaleName: string, oldLocaleCode: string } }) => void
|
|
17402
|
+
}
|
|
17403
|
+
|
|
17404
|
+
/**
|
|
17405
|
+
* Type with listeners options for [LocaleManager](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager) class.
|
|
17406
|
+
*/
|
|
17407
|
+
type LocaleManagerListeners = {
|
|
17408
|
+
/**
|
|
17409
|
+
* The `this` object for listener methods
|
|
17410
|
+
*/
|
|
17411
|
+
thisObj?: object
|
|
17412
|
+
/**
|
|
17413
|
+
* Fires before an object is destroyed.
|
|
17414
|
+
* @param {object} event Event object
|
|
17415
|
+
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
17416
|
+
*/
|
|
17417
|
+
beforeDestroy?: ((event: { source: Base }) => void)|string
|
|
17418
|
+
/**
|
|
17419
|
+
* Fires when any other event is fired from the object.
|
|
17420
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#event-catchAll)
|
|
17421
|
+
* @param {object} event Event object
|
|
17422
|
+
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
17423
|
+
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
17424
|
+
*/
|
|
17425
|
+
catchAll?: ((event: {[key: string]: any, type: string}) => void)|string
|
|
17426
|
+
/**
|
|
17427
|
+
* Fires when an object is destroyed.
|
|
17428
|
+
* @param {object} event Event object
|
|
17429
|
+
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
17430
|
+
*/
|
|
17431
|
+
destroy?: ((event: { source: Base }) => void)|string
|
|
17432
|
+
/**
|
|
17433
|
+
* Fires when a locale is applied
|
|
17434
|
+
* @param {object} event Event object
|
|
17435
|
+
* @param {typeof LocaleManager} event.source The Locale manager instance.
|
|
17436
|
+
* @param {Locale} event.locale Locale configuration
|
|
17437
|
+
* @param {string} event.locale.oldLocaleName The name (eg, `'En") of the previous locale which was replaced.
|
|
17438
|
+
* @param {string} event.locale.oldLocaleCode The code (eg, `'en-US") of the previous locale which was replaced.
|
|
17439
|
+
*/
|
|
17440
|
+
locale?: ((event: { source: typeof LocaleManager, locale: { oldLocaleName: string, oldLocaleCode: string } }) => void)|string
|
|
17441
|
+
}
|
|
17442
|
+
|
|
17124
17443
|
export class LocaleManagerSingleton {
|
|
17444
|
+
/**
|
|
17445
|
+
* Identifies an object as an instance of [Events](https://bryntum.com/products/grid/docs/api/Core/mixin/Events) class, or subclass thereof.
|
|
17446
|
+
*/
|
|
17447
|
+
static readonly isEvents: boolean
|
|
17448
|
+
/**
|
|
17449
|
+
* Set to `true` to call onXXX method names (e.g. `onShow`, `onClick`), as an easy way to listen for events.
|
|
17450
|
+
*/
|
|
17451
|
+
callOnFunctions: boolean
|
|
17452
|
+
/**
|
|
17453
|
+
* By default, if an event handler throws an exception, the error propagates up the stack and the
|
|
17454
|
+
* application state is undefined. Code which follows the event handler will *not* be executed.
|
|
17455
|
+
*/
|
|
17456
|
+
catchEventHandlerExceptions: boolean
|
|
17457
|
+
/**
|
|
17458
|
+
* Identifies an object as an instance of [Events](https://bryntum.com/products/grid/docs/api/Core/mixin/Events) class, or subclass thereof.
|
|
17459
|
+
*/
|
|
17460
|
+
readonly isEvents: boolean
|
|
17125
17461
|
/**
|
|
17126
17462
|
* Get/set currently used locale.
|
|
17127
17463
|
* Setter calls [applyLocale](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-applyLocale).
|
|
@@ -17137,6 +17473,26 @@ export class LocaleManagerSingleton {
|
|
|
17137
17473
|
* if no localization is found at runtime.
|
|
17138
17474
|
*/
|
|
17139
17475
|
throwOnMissingLocale: boolean
|
|
17476
|
+
/**
|
|
17477
|
+
* Fires before an object is destroyed.
|
|
17478
|
+
* @param {object} event Event object
|
|
17479
|
+
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
17480
|
+
*/
|
|
17481
|
+
onBeforeDestroy: ((event: { source: Base }) => void)|string
|
|
17482
|
+
/**
|
|
17483
|
+
* Fires when any other event is fired from the object.
|
|
17484
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#event-catchAll)
|
|
17485
|
+
* @param {object} event Event object
|
|
17486
|
+
* @param {{[key: string]: any, type: string}} event.event The Object that contains event details
|
|
17487
|
+
* @param {string} event.event.type The type of the event which is caught by the listener
|
|
17488
|
+
*/
|
|
17489
|
+
onCatchAll: ((event: {[key: string]: any, type: string}) => void)|string
|
|
17490
|
+
/**
|
|
17491
|
+
* Fires when an object is destroyed.
|
|
17492
|
+
* @param {object} event Event object
|
|
17493
|
+
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
17494
|
+
*/
|
|
17495
|
+
onDestroy: ((event: { source: Base }) => void)|string
|
|
17140
17496
|
/**
|
|
17141
17497
|
* Fires when a locale is applied
|
|
17142
17498
|
* @param {object} event Event object
|
|
@@ -17146,6 +17502,14 @@ export class LocaleManagerSingleton {
|
|
|
17146
17502
|
* @param {string} event.locale.oldLocaleCode The code (eg, `'en-US") of the previous locale which was replaced.
|
|
17147
17503
|
*/
|
|
17148
17504
|
onLocale: ((event: { source: typeof LocaleManager, locale: { oldLocaleName: string, oldLocaleCode: string } }) => void)|string
|
|
17505
|
+
/**
|
|
17506
|
+
* Adds an event listener. This method accepts parameters in the following format:
|
|
17507
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-addListener)
|
|
17508
|
+
* @param {BryntumListenerConfig,string} config An object containing listener definitions, or the event name to listen for
|
|
17509
|
+
* @param {object,Function} [thisObj] Default `this` reference for all listeners in the config object, or the handler function to call if providing a string as the first arg.
|
|
17510
|
+
* @param {object} [oldThisObj] The `this` reference if the old signature starting with a string event name is used..
|
|
17511
|
+
*/
|
|
17512
|
+
addListener(config: BryntumListenerConfig|string, thisObj?: object|(() => void), oldThisObj?: object): Function;
|
|
17149
17513
|
/**
|
|
17150
17514
|
* Applies a locale by string name or publishes new locale configuration with
|
|
17151
17515
|
* [publishLocale](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleHelper#function-publishLocale-static) and applies it.
|
|
@@ -17154,6 +17518,65 @@ export class LocaleManagerSingleton {
|
|
|
17154
17518
|
* @param {Locale,boolean} [config] Locale object. Pass `true` to reapply locale which is passed as first method parameter.
|
|
17155
17519
|
*/
|
|
17156
17520
|
applyLocale(nameOrConfig: string|Locale, config?: Locale|boolean): Promise<Locale|any>;
|
|
17521
|
+
/**
|
|
17522
|
+
* Returns `true` if any listener is registered for the specified `eventName`, or if `null`, for any event.
|
|
17523
|
+
* @param {string} [eventName] The event to test for listeners, or `null` for any event.
|
|
17524
|
+
*/
|
|
17525
|
+
hasListener(eventName?: string): boolean;
|
|
17526
|
+
/**
|
|
17527
|
+
* Alias for [addListener](https://bryntum.com/products/grid/docs/api/Core/mixin/Events#function-addListener). Adds an event listener. This method accepts parameters in the following format:
|
|
17528
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-on)
|
|
17529
|
+
* @param {BryntumListenerConfig,string} config An object containing listener definitions, or the event name to listen for
|
|
17530
|
+
* @param {object,Function} [thisObj] Default `this` reference for all listeners in the config object, or the handler function to call if providing a string as the first arg.
|
|
17531
|
+
* @param {object} [oldThisObj] The `this` reference if the old signature starting with a string event name is used..
|
|
17532
|
+
*/
|
|
17533
|
+
on(config: BryntumListenerConfig|string, thisObj?: object|(() => void), oldThisObj?: object): Function;
|
|
17534
|
+
/**
|
|
17535
|
+
* Relays all events through another object that also implements Events mixin. Adds a prefix to the event name
|
|
17536
|
+
* before relaying, for example add -> storeAdd
|
|
17537
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-relayAll)
|
|
17538
|
+
* @param {Core.mixin.Events} through Object to relay the events through, needs to mix Events mixin in
|
|
17539
|
+
* @param {string} prefix Prefix to add to event name
|
|
17540
|
+
* @param {boolean} [transformCase] Specify false to prevent making first letter of event name uppercase
|
|
17541
|
+
*/
|
|
17542
|
+
relayAll(through: EventsClass, prefix: string, transformCase?: boolean): void;
|
|
17543
|
+
/**
|
|
17544
|
+
* Removes all listeners registered to this object by the application.
|
|
17545
|
+
*/
|
|
17546
|
+
removeAllListeners(): void;
|
|
17547
|
+
/**
|
|
17548
|
+
* Removes an event listener. Same API signature as [addListener](https://bryntum.com/products/grid/docs/api/Core/mixin/Events#function-addListener)
|
|
17549
|
+
* @param {object,string} config A config object or the event name
|
|
17550
|
+
* @param {object,Function} thisObj `this` reference for all listeners, or the listener function
|
|
17551
|
+
* @param {object} oldThisObj `this` The `this` object for the legacy way of adding listeners
|
|
17552
|
+
*/
|
|
17553
|
+
removeListener(config: object|string, thisObj: object|(() => void), oldThisObj: object): boolean;
|
|
17554
|
+
/**
|
|
17555
|
+
* Resume event triggering after a call to [suspendEvents()](https://bryntum.com/products/grid/docs/api/Core/mixin/Events#function-suspendEvents). If any triggered events were queued they will be triggered.
|
|
17556
|
+
*/
|
|
17557
|
+
resumeEvents(): boolean;
|
|
17558
|
+
/**
|
|
17559
|
+
* Prevents events from being triggered until [resumeEvents()](https://bryntum.com/products/grid/docs/api/Core/mixin/Events#function-resumeEvents) is called. Optionally queues events that are triggered while
|
|
17560
|
+
* suspended. Multiple calls stack to require matching calls to `resumeEvents()` before actually resuming.
|
|
17561
|
+
* @param {boolean} queue Specify true to queue events triggered while suspended
|
|
17562
|
+
*/
|
|
17563
|
+
suspendEvents(queue?: boolean): void;
|
|
17564
|
+
/**
|
|
17565
|
+
* Triggers an event, calling all registered listeners with the supplied arguments. Returning false from any listener
|
|
17566
|
+
* makes function return false.
|
|
17567
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-trigger)
|
|
17568
|
+
* @param {string} eventName Event name for which to trigger listeners
|
|
17569
|
+
* @param {object} [param] Single parameter passed on to listeners, source property will be added to it (this)
|
|
17570
|
+
* @param {boolean} [param.bubbles] Pass as `true` to indicate that the event will bubble up the widget ownership hierarchy. For example up a `Menu`->`parent` Menu tree, or a `Field`->`Container` tree.
|
|
17571
|
+
*/
|
|
17572
|
+
trigger(eventName: string, param?: {bubbles?: boolean, [key: string]: any}): Promise<boolean|any>;
|
|
17573
|
+
/**
|
|
17574
|
+
* Shorthand for [removeListener](https://bryntum.com/products/grid/docs/api/Core/mixin/Events#function-removeListener)
|
|
17575
|
+
* @param {object,string} config A config object or the event name
|
|
17576
|
+
* @param {object,Function} [thisObj] `this` reference for all listeners, or the listener function
|
|
17577
|
+
* @param {object} [oldThisObj] `this` The `this` object for the legacy way of adding listeners
|
|
17578
|
+
*/
|
|
17579
|
+
un(config: object|string, thisObj?: object|(() => void), oldThisObj?: object): boolean;
|
|
17157
17580
|
}
|
|
17158
17581
|
export const LocaleManager : LocaleManagerSingleton
|
|
17159
17582
|
|
|
@@ -17986,7 +18409,7 @@ type StateClassConfig = {
|
|
|
17986
18409
|
* (if explicitly specified) will be used as the `stateId`.
|
|
17987
18410
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateId)
|
|
17988
18411
|
*/
|
|
17989
|
-
stateId?: string
|
|
18412
|
+
stateId?: string|null
|
|
17990
18413
|
/**
|
|
17991
18414
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
17992
18415
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -18035,6 +18458,12 @@ export class StateClass {
|
|
|
18035
18458
|
* Gets or sets a component's state
|
|
18036
18459
|
*/
|
|
18037
18460
|
state: any
|
|
18461
|
+
/**
|
|
18462
|
+
* The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is
|
|
18463
|
+
* not assigned, and [stateful](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)
|
|
18464
|
+
* (if explicitly specified) will be used as the `stateId`.
|
|
18465
|
+
*/
|
|
18466
|
+
stateId: string|null
|
|
18038
18467
|
/**
|
|
18039
18468
|
* Fired before state is applied to the source. Allows editing the state object or preventing the operation.
|
|
18040
18469
|
* @param {object} event Event object
|
|
@@ -18070,6 +18499,11 @@ export class StateClass {
|
|
|
18070
18499
|
* @param {boolean} [reload] Pass `true` to load the state even if previously loaded.
|
|
18071
18500
|
*/
|
|
18072
18501
|
loadState(stateId?: string, reload?: boolean): void;
|
|
18502
|
+
/**
|
|
18503
|
+
* Resets this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state) to the default state captured when the object was created,
|
|
18504
|
+
* undoing any state changes applied since then.
|
|
18505
|
+
*/
|
|
18506
|
+
resetDefaultState(): void;
|
|
18073
18507
|
/**
|
|
18074
18508
|
* Saves this object's state to its [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider).
|
|
18075
18509
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/mixin/State#function-saveState)
|
|
@@ -20267,6 +20701,7 @@ type BooleanComboConfig = {
|
|
|
20267
20701
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
20268
20702
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
20269
20703
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
20704
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-clearable)
|
|
20270
20705
|
*/
|
|
20271
20706
|
clearable?: boolean|FieldTriggerConfig
|
|
20272
20707
|
/**
|
|
@@ -20718,6 +21153,12 @@ type BooleanComboConfig = {
|
|
|
20718
21153
|
* Negative option value
|
|
20719
21154
|
*/
|
|
20720
21155
|
negativeValue?: any
|
|
21156
|
+
/**
|
|
21157
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
21158
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
21159
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-overflowTwinConfig)
|
|
21160
|
+
*/
|
|
21161
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
20721
21162
|
/**
|
|
20722
21163
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
20723
21164
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -21532,7 +21973,9 @@ type ButtonConfig = {
|
|
|
21532
21973
|
*/
|
|
21533
21974
|
badge?: string
|
|
21534
21975
|
/**
|
|
21535
|
-
* The button behavioral type,
|
|
21976
|
+
* The button behavioral type, applied as a `type` attribute to the widget's element only when it renders as a
|
|
21977
|
+
* `<button>`. When the widget renders as an `<a>` element (i.e. when [href](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-href) is set), this
|
|
21978
|
+
* attribute is not emitted.
|
|
21536
21979
|
*/
|
|
21537
21980
|
behaviorType?: 'button'|'submit'|'reset'
|
|
21538
21981
|
/**
|
|
@@ -21806,6 +22249,12 @@ type ButtonConfig = {
|
|
|
21806
22249
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
21807
22250
|
*/
|
|
21808
22251
|
monitorResize?: boolean|object
|
|
22252
|
+
/**
|
|
22253
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
22254
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
22255
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-overflowTwinConfig)
|
|
22256
|
+
*/
|
|
22257
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
21809
22258
|
/**
|
|
21810
22259
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
21811
22260
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -21983,6 +22432,11 @@ type ButtonConfig = {
|
|
|
21983
22432
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-ui)
|
|
21984
22433
|
*/
|
|
21985
22434
|
ui?: string|object
|
|
22435
|
+
/**
|
|
22436
|
+
* An arbitrary value associated with this button. For example, a [ButtonGroup](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup) composes
|
|
22437
|
+
* its own [value](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#property-value) from the values of its pressed buttons.
|
|
22438
|
+
*/
|
|
22439
|
+
value?: string
|
|
21986
22440
|
/**
|
|
21987
22441
|
* A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
|
|
21988
22442
|
* Higher weights go further down.
|
|
@@ -22178,7 +22632,9 @@ export class Button extends Widget {
|
|
|
22178
22632
|
*/
|
|
22179
22633
|
badge: string
|
|
22180
22634
|
/**
|
|
22181
|
-
* The button behavioral type,
|
|
22635
|
+
* The button behavioral type, applied as a `type` attribute to the widget's element only when it renders as a
|
|
22636
|
+
* `<button>`. When the widget renders as an `<a>` element (i.e. when [href](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-href) is set), this
|
|
22637
|
+
* attribute is not emitted.
|
|
22182
22638
|
*/
|
|
22183
22639
|
behaviorType: 'button'|'submit'|'reset'
|
|
22184
22640
|
/**
|
|
@@ -22256,6 +22712,11 @@ export class Button extends Widget {
|
|
|
22256
22712
|
* Enabled toggling of the button (stays pressed when pressed).
|
|
22257
22713
|
*/
|
|
22258
22714
|
toggleable: boolean
|
|
22715
|
+
/**
|
|
22716
|
+
* An arbitrary value associated with this button. For example, a [ButtonGroup](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup) composes
|
|
22717
|
+
* its own [value](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#property-value) from the values of its pressed buttons.
|
|
22718
|
+
*/
|
|
22719
|
+
value: string
|
|
22259
22720
|
/**
|
|
22260
22721
|
* Fires when the default action is performed (the button is clicked)
|
|
22261
22722
|
* @param {object} event Event object
|
|
@@ -23000,6 +23461,12 @@ type ButtonGroupConfig = {
|
|
|
23000
23461
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-namedItems)
|
|
23001
23462
|
*/
|
|
23002
23463
|
namedItems?: Record<string, ContainerItemConfig>
|
|
23464
|
+
/**
|
|
23465
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
23466
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
23467
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-overflowTwinConfig)
|
|
23468
|
+
*/
|
|
23469
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
23003
23470
|
/**
|
|
23004
23471
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
23005
23472
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -23165,6 +23632,17 @@ type ButtonGroupConfig = {
|
|
|
23165
23632
|
* button elements)
|
|
23166
23633
|
*/
|
|
23167
23634
|
useGap?: boolean
|
|
23635
|
+
/**
|
|
23636
|
+
* The group's value, composed of the [values](https://bryntum.com/products/grid/docs/api/Core/widget/Button#property-value) of the currently
|
|
23637
|
+
* pressed buttons, joined by the [valueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-valueSeparator). Assigning a value presses the buttons
|
|
23638
|
+
* whose values match.
|
|
23639
|
+
*/
|
|
23640
|
+
value?: string|string[]|number[]
|
|
23641
|
+
/**
|
|
23642
|
+
* The separator used when joining the values of the pressed buttons into the group's
|
|
23643
|
+
* [value](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#property-value).
|
|
23644
|
+
*/
|
|
23645
|
+
valueSeparator?: string
|
|
23168
23646
|
/**
|
|
23169
23647
|
* A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
|
|
23170
23648
|
* Higher weights go further down.
|
|
@@ -23358,6 +23836,12 @@ export class ButtonGroup extends Container {
|
|
|
23358
23836
|
* or all buttons to be untoggled.
|
|
23359
23837
|
*/
|
|
23360
23838
|
toggleable: boolean|number|number[]
|
|
23839
|
+
/**
|
|
23840
|
+
* The group's value, composed of the [values](https://bryntum.com/products/grid/docs/api/Core/widget/Button#property-value) of the currently
|
|
23841
|
+
* pressed buttons, joined by the [valueSeparator](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-valueSeparator). Assigning a value presses the buttons
|
|
23842
|
+
* whose values match.
|
|
23843
|
+
*/
|
|
23844
|
+
value: string|string[]|number[]
|
|
23361
23845
|
/**
|
|
23362
23846
|
* Fires when the default action is performed on a button in the group (the button is clicked)
|
|
23363
23847
|
* @param {object} event Event object
|
|
@@ -24320,6 +24804,12 @@ type CalendarPanelConfig = {
|
|
|
24320
24804
|
* The class name to add to calendar cells which are in the previous or next month.
|
|
24321
24805
|
*/
|
|
24322
24806
|
otherMonthCls?: string
|
|
24807
|
+
/**
|
|
24808
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
24809
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
24810
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-overflowTwinConfig)
|
|
24811
|
+
*/
|
|
24812
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
24323
24813
|
/**
|
|
24324
24814
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
24325
24815
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -24432,7 +24922,7 @@ type CalendarPanelConfig = {
|
|
|
24432
24922
|
* (if explicitly specified) will be used as the `stateId`.
|
|
24433
24923
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-stateId)
|
|
24434
24924
|
*/
|
|
24435
|
-
stateId?: string
|
|
24925
|
+
stateId?: string|null
|
|
24436
24926
|
/**
|
|
24437
24927
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
24438
24928
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -25694,6 +26184,12 @@ type CarouselConfig = {
|
|
|
25694
26184
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-namedItems)
|
|
25695
26185
|
*/
|
|
25696
26186
|
namedItems?: Record<string, ContainerItemConfig>
|
|
26187
|
+
/**
|
|
26188
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
26189
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
26190
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-overflowTwinConfig)
|
|
26191
|
+
*/
|
|
26192
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
25697
26193
|
/**
|
|
25698
26194
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
25699
26195
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -25832,7 +26328,7 @@ type CarouselConfig = {
|
|
|
25832
26328
|
* (if explicitly specified) will be used as the `stateId`.
|
|
25833
26329
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-stateId)
|
|
25834
26330
|
*/
|
|
25835
|
-
stateId?: string
|
|
26331
|
+
stateId?: string|null
|
|
25836
26332
|
/**
|
|
25837
26333
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
25838
26334
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -27042,6 +27538,12 @@ type CheckboxConfig = {
|
|
|
27042
27538
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-name)
|
|
27043
27539
|
*/
|
|
27044
27540
|
name?: string
|
|
27541
|
+
/**
|
|
27542
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
27543
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
27544
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-overflowTwinConfig)
|
|
27545
|
+
*/
|
|
27546
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
27045
27547
|
/**
|
|
27046
27548
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
27047
27549
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -28312,6 +28814,12 @@ type CheckboxGroupConfig = {
|
|
|
28312
28814
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-options)
|
|
28313
28815
|
*/
|
|
28314
28816
|
options?: Record<string, string|CheckboxConfig>
|
|
28817
|
+
/**
|
|
28818
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
28819
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
28820
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-overflowTwinConfig)
|
|
28821
|
+
*/
|
|
28822
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
28315
28823
|
/**
|
|
28316
28824
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
28317
28825
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -28418,7 +28926,7 @@ type CheckboxGroupConfig = {
|
|
|
28418
28926
|
* (if explicitly specified) will be used as the `stateId`.
|
|
28419
28927
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-stateId)
|
|
28420
28928
|
*/
|
|
28421
|
-
stateId?: string
|
|
28929
|
+
stateId?: string|null
|
|
28422
28930
|
/**
|
|
28423
28931
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
28424
28932
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -29498,6 +30006,12 @@ type ChipViewConfig = {
|
|
|
29498
30006
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
29499
30007
|
*/
|
|
29500
30008
|
multiSelect?: boolean
|
|
30009
|
+
/**
|
|
30010
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
30011
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
30012
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-overflowTwinConfig)
|
|
30013
|
+
*/
|
|
30014
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
29501
30015
|
/**
|
|
29502
30016
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
29503
30017
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -30617,6 +31131,12 @@ type CodeEditorConfig = {
|
|
|
30617
31131
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-namedItems)
|
|
30618
31132
|
*/
|
|
30619
31133
|
namedItems?: Record<string, ContainerItemConfig>
|
|
31134
|
+
/**
|
|
31135
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
31136
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
31137
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-overflowTwinConfig)
|
|
31138
|
+
*/
|
|
31139
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
30620
31140
|
/**
|
|
30621
31141
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
30622
31142
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -30716,7 +31236,7 @@ type CodeEditorConfig = {
|
|
|
30716
31236
|
* (if explicitly specified) will be used as the `stateId`.
|
|
30717
31237
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-stateId)
|
|
30718
31238
|
*/
|
|
30719
|
-
stateId?: string
|
|
31239
|
+
stateId?: string|null
|
|
30720
31240
|
/**
|
|
30721
31241
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
30722
31242
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -31525,6 +32045,7 @@ type ColorFieldConfig = {
|
|
|
31525
32045
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
31526
32046
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
31527
32047
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
32048
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-clearable)
|
|
31528
32049
|
*/
|
|
31529
32050
|
clearable?: boolean|FieldTriggerConfig
|
|
31530
32051
|
/**
|
|
@@ -31853,6 +32374,12 @@ type ColorFieldConfig = {
|
|
|
31853
32374
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-name)
|
|
31854
32375
|
*/
|
|
31855
32376
|
name?: string
|
|
32377
|
+
/**
|
|
32378
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
32379
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
32380
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-overflowTwinConfig)
|
|
32381
|
+
*/
|
|
32382
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
31856
32383
|
/**
|
|
31857
32384
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
31858
32385
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -32950,6 +33477,12 @@ type ColorPickerConfig = {
|
|
|
32950
33477
|
* Configure as `true` to allow multi select and add checkboxes to the items
|
|
32951
33478
|
*/
|
|
32952
33479
|
multiSelect?: boolean
|
|
33480
|
+
/**
|
|
33481
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
33482
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
33483
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-overflowTwinConfig)
|
|
33484
|
+
*/
|
|
33485
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
32953
33486
|
/**
|
|
32954
33487
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
32955
33488
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -33791,6 +34324,7 @@ type ComboConfig = {
|
|
|
33791
34324
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
33792
34325
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
33793
34326
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
34327
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-clearable)
|
|
33794
34328
|
*/
|
|
33795
34329
|
clearable?: boolean|FieldTriggerConfig
|
|
33796
34330
|
/**
|
|
@@ -34234,6 +34768,12 @@ type ComboConfig = {
|
|
|
34234
34768
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-name)
|
|
34235
34769
|
*/
|
|
34236
34770
|
name?: string
|
|
34771
|
+
/**
|
|
34772
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
34773
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
34774
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-overflowTwinConfig)
|
|
34775
|
+
*/
|
|
34776
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
34237
34777
|
/**
|
|
34238
34778
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
34239
34779
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -35448,6 +35988,12 @@ type ConfirmationBarConfig = {
|
|
|
35448
35988
|
* @property {Function} overflow.filter A filter function which may return a falsy value to prevent toolbar items from being cloned into the overflow menu.
|
|
35449
35989
|
*/
|
|
35450
35990
|
overflow?: string|{ type: 'scroll'|'menu', repeat: ClickRepeaterConfig, filter: () => void }|null
|
|
35991
|
+
/**
|
|
35992
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
35993
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
35994
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-overflowTwinConfig)
|
|
35995
|
+
*/
|
|
35996
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
35451
35997
|
/**
|
|
35452
35998
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
35453
35999
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -36488,6 +37034,12 @@ type ContainerConfig = {
|
|
|
36488
37034
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-namedItems)
|
|
36489
37035
|
*/
|
|
36490
37036
|
namedItems?: Record<string, ContainerItemConfig>
|
|
37037
|
+
/**
|
|
37038
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
37039
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
37040
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-overflowTwinConfig)
|
|
37041
|
+
*/
|
|
37042
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
36491
37043
|
/**
|
|
36492
37044
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
36493
37045
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -37387,6 +37939,7 @@ type DateFieldConfig = {
|
|
|
37387
37939
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
37388
37940
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
37389
37941
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
37942
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-clearable)
|
|
37390
37943
|
*/
|
|
37391
37944
|
clearable?: boolean|FieldTriggerConfig
|
|
37392
37945
|
/**
|
|
@@ -37736,6 +38289,12 @@ type DateFieldConfig = {
|
|
|
37736
38289
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-name)
|
|
37737
38290
|
*/
|
|
37738
38291
|
name?: string
|
|
38292
|
+
/**
|
|
38293
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
38294
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
38295
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-overflowTwinConfig)
|
|
38296
|
+
*/
|
|
38297
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
37739
38298
|
/**
|
|
37740
38299
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
37741
38300
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -39198,6 +39757,12 @@ type DatePickerConfig = {
|
|
|
39198
39757
|
* The class name to add to calendar cells which are in the previous or next month.
|
|
39199
39758
|
*/
|
|
39200
39759
|
otherMonthCls?: string
|
|
39760
|
+
/**
|
|
39761
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
39762
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
39763
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-overflowTwinConfig)
|
|
39764
|
+
*/
|
|
39765
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
39201
39766
|
/**
|
|
39202
39767
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
39203
39768
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -39316,7 +39881,7 @@ type DatePickerConfig = {
|
|
|
39316
39881
|
* (if explicitly specified) will be used as the `stateId`.
|
|
39317
39882
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-stateId)
|
|
39318
39883
|
*/
|
|
39319
|
-
stateId?: string
|
|
39884
|
+
stateId?: string|null
|
|
39320
39885
|
/**
|
|
39321
39886
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
39322
39887
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -40170,6 +40735,7 @@ type DateRangeFieldConfig = {
|
|
|
40170
40735
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
40171
40736
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
40172
40737
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
40738
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-clearable)
|
|
40173
40739
|
*/
|
|
40174
40740
|
clearable?: boolean|FieldTriggerConfig
|
|
40175
40741
|
/**
|
|
@@ -40541,6 +41107,12 @@ type DateRangeFieldConfig = {
|
|
|
40541
41107
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-name)
|
|
40542
41108
|
*/
|
|
40543
41109
|
name?: string
|
|
41110
|
+
/**
|
|
41111
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
41112
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
41113
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-overflowTwinConfig)
|
|
41114
|
+
*/
|
|
41115
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
40544
41116
|
/**
|
|
40545
41117
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
40546
41118
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -41838,6 +42410,12 @@ type DateRangePickerConfig = {
|
|
|
41838
42410
|
* Set to `false` to hide the next and previous month buttons.
|
|
41839
42411
|
*/
|
|
41840
42412
|
navButtons?: boolean|'inline'|'floating'
|
|
42413
|
+
/**
|
|
42414
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
42415
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
42416
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-overflowTwinConfig)
|
|
42417
|
+
*/
|
|
42418
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
41841
42419
|
/**
|
|
41842
42420
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
41843
42421
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -41976,7 +42554,7 @@ type DateRangePickerConfig = {
|
|
|
41976
42554
|
* (if explicitly specified) will be used as the `stateId`.
|
|
41977
42555
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-stateId)
|
|
41978
42556
|
*/
|
|
41979
|
-
stateId?: string
|
|
42557
|
+
stateId?: string|null
|
|
41980
42558
|
/**
|
|
41981
42559
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
41982
42560
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -42775,6 +43353,7 @@ type DateTimeFieldConfig = {
|
|
|
42775
43353
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
42776
43354
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
42777
43355
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
43356
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-clearable)
|
|
42778
43357
|
*/
|
|
42779
43358
|
clearable?: boolean|FieldTriggerConfig
|
|
42780
43359
|
/**
|
|
@@ -43087,6 +43666,12 @@ type DateTimeFieldConfig = {
|
|
|
43087
43666
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-name)
|
|
43088
43667
|
*/
|
|
43089
43668
|
name?: string
|
|
43669
|
+
/**
|
|
43670
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
43671
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
43672
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-overflowTwinConfig)
|
|
43673
|
+
*/
|
|
43674
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
43090
43675
|
/**
|
|
43091
43676
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
43092
43677
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -44233,6 +44818,12 @@ type DemoCodeEditorConfig = {
|
|
|
44233
44818
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-namedItems)
|
|
44234
44819
|
*/
|
|
44235
44820
|
namedItems?: Record<string, ContainerItemConfig>
|
|
44821
|
+
/**
|
|
44822
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
44823
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
44824
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-overflowTwinConfig)
|
|
44825
|
+
*/
|
|
44826
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
44236
44827
|
/**
|
|
44237
44828
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
44238
44829
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -44337,7 +44928,7 @@ type DemoCodeEditorConfig = {
|
|
|
44337
44928
|
* (if explicitly specified) will be used as the `stateId`.
|
|
44338
44929
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-stateId)
|
|
44339
44930
|
*/
|
|
44340
|
-
stateId?: string
|
|
44931
|
+
stateId?: string|null
|
|
44341
44932
|
/**
|
|
44342
44933
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
44343
44934
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -45309,6 +45900,12 @@ type DemoHeaderConfig = {
|
|
|
45309
45900
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-namedItems)
|
|
45310
45901
|
*/
|
|
45311
45902
|
namedItems?: Record<string, ContainerItemConfig>
|
|
45903
|
+
/**
|
|
45904
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
45905
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
45906
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-overflowTwinConfig)
|
|
45907
|
+
*/
|
|
45908
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
45312
45909
|
/**
|
|
45313
45910
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
45314
45911
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -46055,6 +46652,7 @@ type DisplayFieldConfig = {
|
|
|
46055
46652
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
46056
46653
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
46057
46654
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
46655
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-clearable)
|
|
46058
46656
|
*/
|
|
46059
46657
|
clearable?: boolean|FieldTriggerConfig
|
|
46060
46658
|
/**
|
|
@@ -46381,6 +46979,12 @@ type DisplayFieldConfig = {
|
|
|
46381
46979
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-name)
|
|
46382
46980
|
*/
|
|
46383
46981
|
name?: string
|
|
46982
|
+
/**
|
|
46983
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
46984
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
46985
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-overflowTwinConfig)
|
|
46986
|
+
*/
|
|
46987
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
46384
46988
|
/**
|
|
46385
46989
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
46386
46990
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -47185,6 +47789,7 @@ type DurationFieldConfig = {
|
|
|
47185
47789
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
47186
47790
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
47187
47791
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
47792
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-clearable)
|
|
47188
47793
|
*/
|
|
47189
47794
|
clearable?: boolean|FieldTriggerConfig
|
|
47190
47795
|
/**
|
|
@@ -47536,6 +48141,12 @@ type DurationFieldConfig = {
|
|
|
47536
48141
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-name)
|
|
47537
48142
|
*/
|
|
47538
48143
|
name?: string
|
|
48144
|
+
/**
|
|
48145
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
48146
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
48147
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-overflowTwinConfig)
|
|
48148
|
+
*/
|
|
48149
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
47539
48150
|
/**
|
|
47540
48151
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
47541
48152
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -48821,6 +49432,12 @@ type EditorConfig = {
|
|
|
48821
49432
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-namedItems)
|
|
48822
49433
|
*/
|
|
48823
49434
|
namedItems?: Record<string, ContainerItemConfig>
|
|
49435
|
+
/**
|
|
49436
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
49437
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
49438
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-overflowTwinConfig)
|
|
49439
|
+
*/
|
|
49440
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
48824
49441
|
/**
|
|
48825
49442
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
48826
49443
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -49746,6 +50363,7 @@ type FieldConfig = {
|
|
|
49746
50363
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
49747
50364
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
49748
50365
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
50366
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-clearable)
|
|
49749
50367
|
*/
|
|
49750
50368
|
clearable?: boolean|FieldTriggerConfig
|
|
49751
50369
|
/**
|
|
@@ -50072,6 +50690,12 @@ type FieldConfig = {
|
|
|
50072
50690
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-name)
|
|
50073
50691
|
*/
|
|
50074
50692
|
name?: string
|
|
50693
|
+
/**
|
|
50694
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
50695
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
50696
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-overflowTwinConfig)
|
|
50697
|
+
*/
|
|
50698
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
50075
50699
|
/**
|
|
50076
50700
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
50077
50701
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -51256,6 +51880,12 @@ type FieldContainerConfig = {
|
|
|
51256
51880
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-namedItems)
|
|
51257
51881
|
*/
|
|
51258
51882
|
namedItems?: Record<string, ContainerItemConfig>
|
|
51883
|
+
/**
|
|
51884
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
51885
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
51886
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-overflowTwinConfig)
|
|
51887
|
+
*/
|
|
51888
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
51259
51889
|
/**
|
|
51260
51890
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
51261
51891
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -52266,6 +52896,12 @@ type FieldFilterPickerConfig = {
|
|
|
52266
52896
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators)
|
|
52267
52897
|
*/
|
|
52268
52898
|
operators?: object
|
|
52899
|
+
/**
|
|
52900
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
52901
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
52902
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-overflowTwinConfig)
|
|
52903
|
+
*/
|
|
52904
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
52269
52905
|
/**
|
|
52270
52906
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
52271
52907
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -53363,6 +53999,12 @@ type FieldFilterPickerGroupConfig = {
|
|
|
53363
53999
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
53364
54000
|
*/
|
|
53365
54001
|
operators?: object
|
|
54002
|
+
/**
|
|
54003
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
54004
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
54005
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-overflowTwinConfig)
|
|
54006
|
+
*/
|
|
54007
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
53366
54008
|
/**
|
|
53367
54009
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
53368
54010
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -54528,6 +55170,12 @@ type FieldSetConfig = {
|
|
|
54528
55170
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-namedItems)
|
|
54529
55171
|
*/
|
|
54530
55172
|
namedItems?: Record<string, ContainerItemConfig>
|
|
55173
|
+
/**
|
|
55174
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
55175
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
55176
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-overflowTwinConfig)
|
|
55177
|
+
*/
|
|
55178
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
54531
55179
|
/**
|
|
54532
55180
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
54533
55181
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -54628,7 +55276,7 @@ type FieldSetConfig = {
|
|
|
54628
55276
|
* (if explicitly specified) will be used as the `stateId`.
|
|
54629
55277
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-stateId)
|
|
54630
55278
|
*/
|
|
54631
|
-
stateId?: string
|
|
55279
|
+
stateId?: string|null
|
|
54632
55280
|
/**
|
|
54633
55281
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
54634
55282
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -55395,6 +56043,7 @@ type FileFieldConfig = {
|
|
|
55395
56043
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
55396
56044
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
55397
56045
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
56046
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-clearable)
|
|
55398
56047
|
*/
|
|
55399
56048
|
clearable?: boolean|FieldTriggerConfig
|
|
55400
56049
|
/**
|
|
@@ -55727,6 +56376,12 @@ type FileFieldConfig = {
|
|
|
55727
56376
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-name)
|
|
55728
56377
|
*/
|
|
55729
56378
|
name?: string
|
|
56379
|
+
/**
|
|
56380
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
56381
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
56382
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-overflowTwinConfig)
|
|
56383
|
+
*/
|
|
56384
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
55730
56385
|
/**
|
|
55731
56386
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
55732
56387
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -56765,6 +57420,12 @@ type FilePickerConfig = {
|
|
|
56765
57420
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-namedItems)
|
|
56766
57421
|
*/
|
|
56767
57422
|
namedItems?: Record<string, ContainerItemConfig>
|
|
57423
|
+
/**
|
|
57424
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
57425
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
57426
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-overflowTwinConfig)
|
|
57427
|
+
*/
|
|
57428
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
56768
57429
|
/**
|
|
56769
57430
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
56770
57431
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -57549,6 +58210,7 @@ type FilterFieldConfig = {
|
|
|
57549
58210
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
57550
58211
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
57551
58212
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
58213
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-clearable)
|
|
57552
58214
|
*/
|
|
57553
58215
|
clearable?: boolean|FieldTriggerConfig
|
|
57554
58216
|
/**
|
|
@@ -57908,6 +58570,12 @@ type FilterFieldConfig = {
|
|
|
57908
58570
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-name)
|
|
57909
58571
|
*/
|
|
57910
58572
|
name?: string
|
|
58573
|
+
/**
|
|
58574
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
58575
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
58576
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-overflowTwinConfig)
|
|
58577
|
+
*/
|
|
58578
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
57911
58579
|
/**
|
|
57912
58580
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
57913
58581
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -59088,6 +59756,12 @@ type HintConfig = {
|
|
|
59088
59756
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-nextAction)
|
|
59089
59757
|
*/
|
|
59090
59758
|
nextAction?: HintActions|HintActions[]
|
|
59759
|
+
/**
|
|
59760
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
59761
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
59762
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-overflowTwinConfig)
|
|
59763
|
+
*/
|
|
59764
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
59091
59765
|
/**
|
|
59092
59766
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
59093
59767
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -59217,7 +59891,7 @@ type HintConfig = {
|
|
|
59217
59891
|
* (if explicitly specified) will be used as the `stateId`.
|
|
59218
59892
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-stateId)
|
|
59219
59893
|
*/
|
|
59220
|
-
stateId?: string
|
|
59894
|
+
stateId?: string|null
|
|
59221
59895
|
/**
|
|
59222
59896
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
59223
59897
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -60073,6 +60747,12 @@ type LabelConfig = {
|
|
|
60073
60747
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
60074
60748
|
*/
|
|
60075
60749
|
monitorResize?: boolean|object
|
|
60750
|
+
/**
|
|
60751
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
60752
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
60753
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-overflowTwinConfig)
|
|
60754
|
+
*/
|
|
60755
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
60076
60756
|
/**
|
|
60077
60757
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
60078
60758
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -61045,6 +61725,12 @@ type ListConfig = {
|
|
|
61045
61725
|
* Configure as `true` to allow multi select and add checkboxes to the items
|
|
61046
61726
|
*/
|
|
61047
61727
|
multiSelect?: boolean
|
|
61728
|
+
/**
|
|
61729
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
61730
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
61731
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-overflowTwinConfig)
|
|
61732
|
+
*/
|
|
61733
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
61048
61734
|
/**
|
|
61049
61735
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
61050
61736
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -62070,6 +62756,12 @@ type MaskConfig = {
|
|
|
62070
62756
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
62071
62757
|
*/
|
|
62072
62758
|
monitorResize?: boolean|object
|
|
62759
|
+
/**
|
|
62760
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
62761
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
62762
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-overflowTwinConfig)
|
|
62763
|
+
*/
|
|
62764
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
62073
62765
|
/**
|
|
62074
62766
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
62075
62767
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -63257,6 +63949,12 @@ type MenuConfig = {
|
|
|
63257
63949
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-namedItems)
|
|
63258
63950
|
*/
|
|
63259
63951
|
namedItems?: Record<string, ContainerItemConfig>
|
|
63952
|
+
/**
|
|
63953
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
63954
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
63955
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-overflowTwinConfig)
|
|
63956
|
+
*/
|
|
63957
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
63260
63958
|
/**
|
|
63261
63959
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
63262
63960
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -63373,7 +64071,7 @@ type MenuConfig = {
|
|
|
63373
64071
|
* (if explicitly specified) will be used as the `stateId`.
|
|
63374
64072
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-stateId)
|
|
63375
64073
|
*/
|
|
63376
|
-
stateId?: string
|
|
64074
|
+
stateId?: string|null
|
|
63377
64075
|
/**
|
|
63378
64076
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
63379
64077
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -63765,6 +64463,23 @@ export class Menu extends Popup {
|
|
|
63765
64463
|
* Could be used for callbacks typings in TypeScript application.
|
|
63766
64464
|
*/
|
|
63767
64465
|
type MenuItemListenersTypes = {
|
|
64466
|
+
/**
|
|
64467
|
+
* This menu item has been activated.
|
|
64468
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#event-action)
|
|
64469
|
+
* @param {object} event Event object
|
|
64470
|
+
* @param {Core.widget.MenuItem} event.item The menu item which is being actioned.
|
|
64471
|
+
* @param {Core.widget.Menu} event.menu Menu containing the menu item
|
|
64472
|
+
* @param {Event} event.domEvent The user interaction event
|
|
64473
|
+
* @param {Core.data.Model} [event.record] Current record if called from Grid
|
|
64474
|
+
* @param {Core.data.Model} [event.column] Current column if called from Grid
|
|
64475
|
+
* @param {Core.data.Model} [event.columnRecord] Current column if called from TaskBoard
|
|
64476
|
+
* @param {Core.data.Model} [event.taskRecord] Current record if called from TaskBoard or Gantt
|
|
64477
|
+
* @param {Core.data.Model} [event.eventRecord] Current event if called from Scheduler or SchedulerPro
|
|
64478
|
+
* @param {Core.data.Model} [event.resourceRecord] Current resource if called from Scheduler or SchedulerPro
|
|
64479
|
+
* @param {Core.data.Model} [event.assignmentRecord] Current assignment if called from Scheduler or SchedulerPro
|
|
64480
|
+
* @param {boolean} [event.checked] Current checked state for item which had `checked` config
|
|
64481
|
+
*/
|
|
64482
|
+
action: (event: { item: MenuItem, menu: Menu, domEvent: Event, record?: Model, column?: Model, columnRecord?: Model, taskRecord?: Model, eventRecord?: Model, resourceRecord?: Model, assignmentRecord?: Model, checked?: boolean }) => void
|
|
63768
64483
|
/**
|
|
63769
64484
|
* Fires before an object is destroyed.
|
|
63770
64485
|
* @param {object} event Event object
|
|
@@ -63906,6 +64621,23 @@ type MenuItemListeners = {
|
|
|
63906
64621
|
* The `this` object for listener methods
|
|
63907
64622
|
*/
|
|
63908
64623
|
thisObj?: object
|
|
64624
|
+
/**
|
|
64625
|
+
* This menu item has been activated.
|
|
64626
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#event-action)
|
|
64627
|
+
* @param {object} event Event object
|
|
64628
|
+
* @param {Core.widget.MenuItem} event.item The menu item which is being actioned.
|
|
64629
|
+
* @param {Core.widget.Menu} event.menu Menu containing the menu item
|
|
64630
|
+
* @param {Event} event.domEvent The user interaction event
|
|
64631
|
+
* @param {Core.data.Model} [event.record] Current record if called from Grid
|
|
64632
|
+
* @param {Core.data.Model} [event.column] Current column if called from Grid
|
|
64633
|
+
* @param {Core.data.Model} [event.columnRecord] Current column if called from TaskBoard
|
|
64634
|
+
* @param {Core.data.Model} [event.taskRecord] Current record if called from TaskBoard or Gantt
|
|
64635
|
+
* @param {Core.data.Model} [event.eventRecord] Current event if called from Scheduler or SchedulerPro
|
|
64636
|
+
* @param {Core.data.Model} [event.resourceRecord] Current resource if called from Scheduler or SchedulerPro
|
|
64637
|
+
* @param {Core.data.Model} [event.assignmentRecord] Current assignment if called from Scheduler or SchedulerPro
|
|
64638
|
+
* @param {boolean} [event.checked] Current checked state for item which had `checked` config
|
|
64639
|
+
*/
|
|
64640
|
+
action?: ((event: { item: MenuItem, menu: Menu, domEvent: Event, record?: Model, column?: Model, columnRecord?: Model, taskRecord?: Model, eventRecord?: Model, resourceRecord?: Model, assignmentRecord?: Model, checked?: boolean }) => void)|string
|
|
63909
64641
|
/**
|
|
63910
64642
|
* Fires before an object is destroyed.
|
|
63911
64643
|
* @param {object} event Event object
|
|
@@ -64360,6 +65092,12 @@ type MenuItemConfig = {
|
|
|
64360
65092
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
64361
65093
|
*/
|
|
64362
65094
|
monitorResize?: boolean|object
|
|
65095
|
+
/**
|
|
65096
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
65097
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
65098
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-overflowTwinConfig)
|
|
65099
|
+
*/
|
|
65100
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
64363
65101
|
/**
|
|
64364
65102
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
64365
65103
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -64518,6 +65256,23 @@ type MenuItemConfig = {
|
|
|
64518
65256
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-y)
|
|
64519
65257
|
*/
|
|
64520
65258
|
y?: number
|
|
65259
|
+
/**
|
|
65260
|
+
* This menu item has been activated.
|
|
65261
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#event-action)
|
|
65262
|
+
* @param {object} event Event object
|
|
65263
|
+
* @param {Core.widget.MenuItem} event.item The menu item which is being actioned.
|
|
65264
|
+
* @param {Core.widget.Menu} event.menu Menu containing the menu item
|
|
65265
|
+
* @param {Event} event.domEvent The user interaction event
|
|
65266
|
+
* @param {Core.data.Model} [event.record] Current record if called from Grid
|
|
65267
|
+
* @param {Core.data.Model} [event.column] Current column if called from Grid
|
|
65268
|
+
* @param {Core.data.Model} [event.columnRecord] Current column if called from TaskBoard
|
|
65269
|
+
* @param {Core.data.Model} [event.taskRecord] Current record if called from TaskBoard or Gantt
|
|
65270
|
+
* @param {Core.data.Model} [event.eventRecord] Current event if called from Scheduler or SchedulerPro
|
|
65271
|
+
* @param {Core.data.Model} [event.resourceRecord] Current resource if called from Scheduler or SchedulerPro
|
|
65272
|
+
* @param {Core.data.Model} [event.assignmentRecord] Current assignment if called from Scheduler or SchedulerPro
|
|
65273
|
+
* @param {boolean} [event.checked] Current checked state for item which had `checked` config
|
|
65274
|
+
*/
|
|
65275
|
+
onAction?: ((event: { item: MenuItem, menu: Menu, domEvent: Event, record?: Model, column?: Model, columnRecord?: Model, taskRecord?: Model, eventRecord?: Model, resourceRecord?: Model, assignmentRecord?: Model, checked?: boolean }) => void)|string
|
|
64521
65276
|
/**
|
|
64522
65277
|
* Fires before an object is destroyed.
|
|
64523
65278
|
* @param {object} event Event object
|
|
@@ -64684,6 +65439,23 @@ export class MenuItem extends Widget {
|
|
|
64684
65439
|
* also sets `toggleable` to `true`.
|
|
64685
65440
|
*/
|
|
64686
65441
|
toggleGroup: string
|
|
65442
|
+
/**
|
|
65443
|
+
* This menu item has been activated.
|
|
65444
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#event-action)
|
|
65445
|
+
* @param {object} event Event object
|
|
65446
|
+
* @param {Core.widget.MenuItem} event.item The menu item which is being actioned.
|
|
65447
|
+
* @param {Core.widget.Menu} event.menu Menu containing the menu item
|
|
65448
|
+
* @param {Event} event.domEvent The user interaction event
|
|
65449
|
+
* @param {Core.data.Model} [event.record] Current record if called from Grid
|
|
65450
|
+
* @param {Core.data.Model} [event.column] Current column if called from Grid
|
|
65451
|
+
* @param {Core.data.Model} [event.columnRecord] Current column if called from TaskBoard
|
|
65452
|
+
* @param {Core.data.Model} [event.taskRecord] Current record if called from TaskBoard or Gantt
|
|
65453
|
+
* @param {Core.data.Model} [event.eventRecord] Current event if called from Scheduler or SchedulerPro
|
|
65454
|
+
* @param {Core.data.Model} [event.resourceRecord] Current resource if called from Scheduler or SchedulerPro
|
|
65455
|
+
* @param {Core.data.Model} [event.assignmentRecord] Current assignment if called from Scheduler or SchedulerPro
|
|
65456
|
+
* @param {boolean} [event.checked] Current checked state for item which had `checked` config
|
|
65457
|
+
*/
|
|
65458
|
+
onAction: ((event: { item: MenuItem, menu: Menu, domEvent: Event, record?: Model, column?: Model, columnRecord?: Model, taskRecord?: Model, eventRecord?: Model, resourceRecord?: Model, assignmentRecord?: Model, checked?: boolean }) => void)|string
|
|
64687
65459
|
/**
|
|
64688
65460
|
* Fires before an object is destroyed.
|
|
64689
65461
|
* @param {object} event Event object
|
|
@@ -65924,6 +66696,12 @@ type MonthPickerConfig = {
|
|
|
65924
66696
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-namedItems)
|
|
65925
66697
|
*/
|
|
65926
66698
|
namedItems?: Record<string, ContainerItemConfig>
|
|
66699
|
+
/**
|
|
66700
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
66701
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
66702
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-overflowTwinConfig)
|
|
66703
|
+
*/
|
|
66704
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
65927
66705
|
/**
|
|
65928
66706
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
65929
66707
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -66024,7 +66802,7 @@ type MonthPickerConfig = {
|
|
|
66024
66802
|
* (if explicitly specified) will be used as the `stateId`.
|
|
66025
66803
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-stateId)
|
|
66026
66804
|
*/
|
|
66027
|
-
stateId?: string
|
|
66805
|
+
stateId?: string|null
|
|
66028
66806
|
/**
|
|
66029
66807
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
66030
66808
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -67223,6 +68001,12 @@ type MultiDatePickerConfig = {
|
|
|
67223
68001
|
* Set to `false` to hide the next and previous month buttons.
|
|
67224
68002
|
*/
|
|
67225
68003
|
navButtons?: boolean|'inline'|'floating'
|
|
68004
|
+
/**
|
|
68005
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
68006
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
68007
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-overflowTwinConfig)
|
|
68008
|
+
*/
|
|
68009
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
67226
68010
|
/**
|
|
67227
68011
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
67228
68012
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -67365,7 +68149,7 @@ type MultiDatePickerConfig = {
|
|
|
67365
68149
|
* (if explicitly specified) will be used as the `stateId`.
|
|
67366
68150
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-stateId)
|
|
67367
68151
|
*/
|
|
67368
|
-
stateId?: string
|
|
68152
|
+
stateId?: string|null
|
|
67369
68153
|
/**
|
|
67370
68154
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
67371
68155
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -68161,6 +68945,7 @@ type NumberFieldConfig = {
|
|
|
68161
68945
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
68162
68946
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
68163
68947
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
68948
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-clearable)
|
|
68164
68949
|
*/
|
|
68165
68950
|
clearable?: boolean|FieldTriggerConfig
|
|
68166
68951
|
/**
|
|
@@ -68512,6 +69297,12 @@ type NumberFieldConfig = {
|
|
|
68512
69297
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-name)
|
|
68513
69298
|
*/
|
|
68514
69299
|
name?: string
|
|
69300
|
+
/**
|
|
69301
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
69302
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
69303
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-overflowTwinConfig)
|
|
69304
|
+
*/
|
|
69305
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
68515
69306
|
/**
|
|
68516
69307
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
68517
69308
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -69613,6 +70404,12 @@ type PagingToolbarConfig = {
|
|
|
69613
70404
|
* @property {Function} overflow.filter A filter function which may return a falsy value to prevent toolbar items from being cloned into the overflow menu.
|
|
69614
70405
|
*/
|
|
69615
70406
|
overflow?: string|{ type: 'scroll'|'menu', repeat: ClickRepeaterConfig, filter: () => void }|null
|
|
70407
|
+
/**
|
|
70408
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
70409
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
70410
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-overflowTwinConfig)
|
|
70411
|
+
*/
|
|
70412
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
69616
70413
|
/**
|
|
69617
70414
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
69618
70415
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -70725,6 +71522,12 @@ type PanelConfig = {
|
|
|
70725
71522
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-namedItems)
|
|
70726
71523
|
*/
|
|
70727
71524
|
namedItems?: Record<string, ContainerItemConfig>
|
|
71525
|
+
/**
|
|
71526
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
71527
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
71528
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-overflowTwinConfig)
|
|
71529
|
+
*/
|
|
71530
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
70728
71531
|
/**
|
|
70729
71532
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
70730
71533
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -70825,7 +71628,7 @@ type PanelConfig = {
|
|
|
70825
71628
|
* (if explicitly specified) will be used as the `stateId`.
|
|
70826
71629
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-stateId)
|
|
70827
71630
|
*/
|
|
70828
|
-
stateId?: string
|
|
71631
|
+
stateId?: string|null
|
|
70829
71632
|
/**
|
|
70830
71633
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
70831
71634
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -71133,6 +71936,11 @@ export class Panel extends Container {
|
|
|
71133
71936
|
* This property is `true` if the panel is currently expanding.
|
|
71134
71937
|
*/
|
|
71135
71938
|
readonly expanding: boolean
|
|
71939
|
+
/**
|
|
71940
|
+
* This Panel's header element. This is the element which contains the [title](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-title), the
|
|
71941
|
+
* [tools](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-tools) and any header-docked widgets. It is `undefined` when the header is configured away.
|
|
71942
|
+
*/
|
|
71943
|
+
readonly headerElement: HTMLElement
|
|
71136
71944
|
/**
|
|
71137
71945
|
* Identifies an object as an instance of [Panel](https://bryntum.com/products/grid/docs/api/Core/widget/Panel) class, or subclass thereof.
|
|
71138
71946
|
*/
|
|
@@ -71153,6 +71961,12 @@ export class Panel extends Container {
|
|
|
71153
71961
|
* Gets or sets a component's state
|
|
71154
71962
|
*/
|
|
71155
71963
|
state: any
|
|
71964
|
+
/**
|
|
71965
|
+
* The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is
|
|
71966
|
+
* not assigned, and [stateful](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)
|
|
71967
|
+
* (if explicitly specified) will be used as the `stateId`.
|
|
71968
|
+
*/
|
|
71969
|
+
stateId: string|null
|
|
71156
71970
|
/**
|
|
71157
71971
|
* Get toolbar [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar) docked to the top of the panel
|
|
71158
71972
|
*/
|
|
@@ -71251,6 +72065,11 @@ export class Panel extends Container {
|
|
|
71251
72065
|
* @param {boolean} [reload] Pass `true` to load the state even if previously loaded.
|
|
71252
72066
|
*/
|
|
71253
72067
|
loadState(stateId?: string, reload?: boolean): void;
|
|
72068
|
+
/**
|
|
72069
|
+
* Resets this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state) to the default state captured when the object was created,
|
|
72070
|
+
* undoing any state changes applied since then.
|
|
72071
|
+
*/
|
|
72072
|
+
resetDefaultState(): void;
|
|
71254
72073
|
/**
|
|
71255
72074
|
* Saves this object's state to its [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider).
|
|
71256
72075
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#function-saveState)
|
|
@@ -71682,6 +72501,7 @@ type PasswordFieldConfig = {
|
|
|
71682
72501
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
71683
72502
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
71684
72503
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
72504
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-clearable)
|
|
71685
72505
|
*/
|
|
71686
72506
|
clearable?: boolean|FieldTriggerConfig
|
|
71687
72507
|
/**
|
|
@@ -72008,6 +72828,12 @@ type PasswordFieldConfig = {
|
|
|
72008
72828
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-name)
|
|
72009
72829
|
*/
|
|
72010
72830
|
name?: string
|
|
72831
|
+
/**
|
|
72832
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
72833
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
72834
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-overflowTwinConfig)
|
|
72835
|
+
*/
|
|
72836
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
72011
72837
|
/**
|
|
72012
72838
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
72013
72839
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -72800,6 +73626,7 @@ type PickerFieldConfig = {
|
|
|
72800
73626
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
72801
73627
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
72802
73628
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
73629
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-clearable)
|
|
72803
73630
|
*/
|
|
72804
73631
|
clearable?: boolean|FieldTriggerConfig
|
|
72805
73632
|
/**
|
|
@@ -73131,6 +73958,12 @@ type PickerFieldConfig = {
|
|
|
73131
73958
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-name)
|
|
73132
73959
|
*/
|
|
73133
73960
|
name?: string
|
|
73961
|
+
/**
|
|
73962
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
73963
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
73964
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-overflowTwinConfig)
|
|
73965
|
+
*/
|
|
73966
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
73134
73967
|
/**
|
|
73135
73968
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
73136
73969
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -74341,6 +75174,12 @@ type PopupConfig = {
|
|
|
74341
75174
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-namedItems)
|
|
74342
75175
|
*/
|
|
74343
75176
|
namedItems?: Record<string, ContainerItemConfig>
|
|
75177
|
+
/**
|
|
75178
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
75179
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
75180
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-overflowTwinConfig)
|
|
75181
|
+
*/
|
|
75182
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
74344
75183
|
/**
|
|
74345
75184
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
74346
75185
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -74465,7 +75304,7 @@ type PopupConfig = {
|
|
|
74465
75304
|
* (if explicitly specified) will be used as the `stateId`.
|
|
74466
75305
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-stateId)
|
|
74467
75306
|
*/
|
|
74468
|
-
stateId?: string
|
|
75307
|
+
stateId?: string|null
|
|
74469
75308
|
/**
|
|
74470
75309
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
74471
75310
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -75356,6 +76195,12 @@ type ProgressBarConfig = {
|
|
|
75356
76195
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
75357
76196
|
*/
|
|
75358
76197
|
monitorResize?: boolean|object
|
|
76198
|
+
/**
|
|
76199
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
76200
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
76201
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-overflowTwinConfig)
|
|
76202
|
+
*/
|
|
76203
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
75359
76204
|
/**
|
|
75360
76205
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
75361
76206
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -76467,6 +77312,12 @@ type RadioConfig = {
|
|
|
76467
77312
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-name)
|
|
76468
77313
|
*/
|
|
76469
77314
|
name?: string
|
|
77315
|
+
/**
|
|
77316
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
77317
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
77318
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-overflowTwinConfig)
|
|
77319
|
+
*/
|
|
77320
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
76470
77321
|
/**
|
|
76471
77322
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
76472
77323
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -77640,6 +78491,12 @@ type RadioGroupConfig = {
|
|
|
77640
78491
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-options)
|
|
77641
78492
|
*/
|
|
77642
78493
|
options?: Record<string, string|RadioConfig>
|
|
78494
|
+
/**
|
|
78495
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
78496
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
78497
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-overflowTwinConfig)
|
|
78498
|
+
*/
|
|
78499
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
77643
78500
|
/**
|
|
77644
78501
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
77645
78502
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -77740,7 +78597,7 @@ type RadioGroupConfig = {
|
|
|
77740
78597
|
* (if explicitly specified) will be used as the `stateId`.
|
|
77741
78598
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-stateId)
|
|
77742
78599
|
*/
|
|
77743
|
-
stateId?: string
|
|
78600
|
+
stateId?: string|null
|
|
77744
78601
|
/**
|
|
77745
78602
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
77746
78603
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -78495,6 +79352,7 @@ type RichTextFieldConfig = {
|
|
|
78495
79352
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
78496
79353
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
78497
79354
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
79355
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-clearable)
|
|
78498
79356
|
*/
|
|
78499
79357
|
clearable?: boolean|FieldTriggerConfig
|
|
78500
79358
|
/**
|
|
@@ -78821,6 +79679,12 @@ type RichTextFieldConfig = {
|
|
|
78821
79679
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-name)
|
|
78822
79680
|
*/
|
|
78823
79681
|
name?: string
|
|
79682
|
+
/**
|
|
79683
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
79684
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
79685
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-overflowTwinConfig)
|
|
79686
|
+
*/
|
|
79687
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
78824
79688
|
/**
|
|
78825
79689
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
78826
79690
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -79177,7 +80041,7 @@ export abstract class RichTextField extends Field {
|
|
|
79177
80041
|
* Use this property to update this field´s value silently while the rich text contents of this field is being
|
|
79178
80042
|
* edited. Otherwise, it would reset caret position and completely overwrite the context.
|
|
79179
80043
|
*/
|
|
79180
|
-
richText:
|
|
80044
|
+
richText: string
|
|
79181
80045
|
/**
|
|
79182
80046
|
* Fires before an object is destroyed.
|
|
79183
80047
|
* @param {object} event Event object
|
|
@@ -79978,6 +80842,12 @@ type SlideToggleConfig = {
|
|
|
79978
80842
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-name)
|
|
79979
80843
|
*/
|
|
79980
80844
|
name?: string
|
|
80845
|
+
/**
|
|
80846
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
80847
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
80848
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-overflowTwinConfig)
|
|
80849
|
+
*/
|
|
80850
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
79981
80851
|
/**
|
|
79982
80852
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
79983
80853
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -80948,6 +81818,12 @@ type SliderConfig = {
|
|
|
80948
81818
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
80949
81819
|
*/
|
|
80950
81820
|
monitorResize?: boolean|object
|
|
81821
|
+
/**
|
|
81822
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
81823
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
81824
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-overflowTwinConfig)
|
|
81825
|
+
*/
|
|
81826
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
80951
81827
|
/**
|
|
80952
81828
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
80953
81829
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -81930,6 +82806,12 @@ type SplitterConfig = {
|
|
|
81930
82806
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-orientation)
|
|
81931
82807
|
*/
|
|
81932
82808
|
orientation?: 'auto'|'horizontal'|'vertical'
|
|
82809
|
+
/**
|
|
82810
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
82811
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
82812
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-overflowTwinConfig)
|
|
82813
|
+
*/
|
|
82814
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
81933
82815
|
/**
|
|
81934
82816
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
81935
82817
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -82649,7 +83531,9 @@ type TabConfig = {
|
|
|
82649
83531
|
*/
|
|
82650
83532
|
badge?: string
|
|
82651
83533
|
/**
|
|
82652
|
-
* The button behavioral type,
|
|
83534
|
+
* The button behavioral type, applied as a `type` attribute to the widget's element only when it renders as a
|
|
83535
|
+
* `<button>`. When the widget renders as an `<a>` element (i.e. when [href](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-href) is set), this
|
|
83536
|
+
* attribute is not emitted.
|
|
82653
83537
|
*/
|
|
82654
83538
|
behaviorType?: 'button'|'submit'|'reset'
|
|
82655
83539
|
/**
|
|
@@ -82927,6 +83811,12 @@ type TabConfig = {
|
|
|
82927
83811
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
82928
83812
|
*/
|
|
82929
83813
|
monitorResize?: boolean|object
|
|
83814
|
+
/**
|
|
83815
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
83816
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
83817
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-overflowTwinConfig)
|
|
83818
|
+
*/
|
|
83819
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
82930
83820
|
/**
|
|
82931
83821
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
82932
83822
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -83111,6 +84001,11 @@ type TabConfig = {
|
|
|
83111
84001
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-ui)
|
|
83112
84002
|
*/
|
|
83113
84003
|
ui?: string|object
|
|
84004
|
+
/**
|
|
84005
|
+
* An arbitrary value associated with this button. For example, a [ButtonGroup](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup) composes
|
|
84006
|
+
* its own [value](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#property-value) from the values of its pressed buttons.
|
|
84007
|
+
*/
|
|
84008
|
+
value?: string
|
|
83114
84009
|
/**
|
|
83115
84010
|
* A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
|
|
83116
84011
|
* Higher weights go further down.
|
|
@@ -84028,6 +84923,12 @@ type TabBarConfig = {
|
|
|
84028
84923
|
* @property {Function} overflow.filter A filter function which may return a falsy value to prevent toolbar items from being cloned into the overflow menu.
|
|
84029
84924
|
*/
|
|
84030
84925
|
overflow?: string|{ type: 'scroll'|'menu', repeat: ClickRepeaterConfig, filter: () => void }|null
|
|
84926
|
+
/**
|
|
84927
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
84928
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
84929
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-overflowTwinConfig)
|
|
84930
|
+
*/
|
|
84931
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
84031
84932
|
/**
|
|
84032
84933
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
84033
84934
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -85185,6 +86086,12 @@ type TabPanelConfig = {
|
|
|
85185
86086
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-namedItems)
|
|
85186
86087
|
*/
|
|
85187
86088
|
namedItems?: Record<string, ContainerItemConfig>
|
|
86089
|
+
/**
|
|
86090
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
86091
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
86092
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-overflowTwinConfig)
|
|
86093
|
+
*/
|
|
86094
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
85188
86095
|
/**
|
|
85189
86096
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
85190
86097
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -85285,7 +86192,7 @@ type TabPanelConfig = {
|
|
|
85285
86192
|
* (if explicitly specified) will be used as the `stateId`.
|
|
85286
86193
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-stateId)
|
|
85287
86194
|
*/
|
|
85288
|
-
stateId?: string
|
|
86195
|
+
stateId?: string|null
|
|
85289
86196
|
/**
|
|
85290
86197
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
85291
86198
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -86097,6 +87004,7 @@ type TextAreaFieldConfig = {
|
|
|
86097
87004
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
86098
87005
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
86099
87006
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
87007
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-clearable)
|
|
86100
87008
|
*/
|
|
86101
87009
|
clearable?: boolean|FieldTriggerConfig
|
|
86102
87010
|
/**
|
|
@@ -86423,6 +87331,12 @@ type TextAreaFieldConfig = {
|
|
|
86423
87331
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-name)
|
|
86424
87332
|
*/
|
|
86425
87333
|
name?: string
|
|
87334
|
+
/**
|
|
87335
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
87336
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
87337
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-overflowTwinConfig)
|
|
87338
|
+
*/
|
|
87339
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
86426
87340
|
/**
|
|
86427
87341
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
86428
87342
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -87234,6 +88148,7 @@ type TextAreaPickerFieldConfig = {
|
|
|
87234
88148
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
87235
88149
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
87236
88150
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
88151
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-clearable)
|
|
87237
88152
|
*/
|
|
87238
88153
|
clearable?: boolean|FieldTriggerConfig
|
|
87239
88154
|
/**
|
|
@@ -87561,6 +88476,12 @@ type TextAreaPickerFieldConfig = {
|
|
|
87561
88476
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-name)
|
|
87562
88477
|
*/
|
|
87563
88478
|
name?: string
|
|
88479
|
+
/**
|
|
88480
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
88481
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
88482
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-overflowTwinConfig)
|
|
88483
|
+
*/
|
|
88484
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
87564
88485
|
/**
|
|
87565
88486
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
87566
88487
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -88374,6 +89295,7 @@ type TextFieldConfig = {
|
|
|
88374
89295
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
88375
89296
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
88376
89297
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
89298
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-clearable)
|
|
88377
89299
|
*/
|
|
88378
89300
|
clearable?: boolean|FieldTriggerConfig
|
|
88379
89301
|
/**
|
|
@@ -88708,6 +89630,12 @@ type TextFieldConfig = {
|
|
|
88708
89630
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-name)
|
|
88709
89631
|
*/
|
|
88710
89632
|
name?: string
|
|
89633
|
+
/**
|
|
89634
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
89635
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
89636
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-overflowTwinConfig)
|
|
89637
|
+
*/
|
|
89638
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
88711
89639
|
/**
|
|
88712
89640
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
88713
89641
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -89526,6 +90454,7 @@ type TimeFieldConfig = {
|
|
|
89526
90454
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
89527
90455
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
89528
90456
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
90457
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-clearable)
|
|
89529
90458
|
*/
|
|
89530
90459
|
clearable?: boolean|FieldTriggerConfig
|
|
89531
90460
|
/**
|
|
@@ -89875,6 +90804,12 @@ type TimeFieldConfig = {
|
|
|
89875
90804
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-name)
|
|
89876
90805
|
*/
|
|
89877
90806
|
name?: string
|
|
90807
|
+
/**
|
|
90808
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
90809
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
90810
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-overflowTwinConfig)
|
|
90811
|
+
*/
|
|
90812
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
89878
90813
|
/**
|
|
89879
90814
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
89880
90815
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -90986,6 +91921,12 @@ type TimePickerConfig = {
|
|
|
90986
91921
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-namedItems)
|
|
90987
91922
|
*/
|
|
90988
91923
|
namedItems?: Record<string, ContainerItemConfig>
|
|
91924
|
+
/**
|
|
91925
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
91926
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
91927
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-overflowTwinConfig)
|
|
91928
|
+
*/
|
|
91929
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
90989
91930
|
/**
|
|
90990
91931
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
90991
91932
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -91876,6 +92817,12 @@ type ToastConfig = {
|
|
|
91876
92817
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
91877
92818
|
*/
|
|
91878
92819
|
monitorResize?: boolean|object
|
|
92820
|
+
/**
|
|
92821
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
92822
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
92823
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-overflowTwinConfig)
|
|
92824
|
+
*/
|
|
92825
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
91879
92826
|
/**
|
|
91880
92827
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
91881
92828
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -92755,6 +93702,12 @@ type ToolConfig = {
|
|
|
92755
93702
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
92756
93703
|
*/
|
|
92757
93704
|
monitorResize?: boolean|object
|
|
93705
|
+
/**
|
|
93706
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
93707
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
93708
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-overflowTwinConfig)
|
|
93709
|
+
*/
|
|
93710
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
92758
93711
|
/**
|
|
92759
93712
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
92760
93713
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -93761,6 +94714,12 @@ type ToolbarConfig = {
|
|
|
93761
94714
|
* @property {Function} overflow.filter A filter function which may return a falsy value to prevent toolbar items from being cloned into the overflow menu.
|
|
93762
94715
|
*/
|
|
93763
94716
|
overflow?: string|{ type: 'scroll'|'menu', repeat: ClickRepeaterConfig, filter: () => void }|null
|
|
94717
|
+
/**
|
|
94718
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
94719
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
94720
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflowTwinConfig)
|
|
94721
|
+
*/
|
|
94722
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
93764
94723
|
/**
|
|
93765
94724
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
93766
94725
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -95069,6 +96028,12 @@ type TooltipConfig = {
|
|
|
95069
96028
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-namedItems)
|
|
95070
96029
|
*/
|
|
95071
96030
|
namedItems?: Record<string, ContainerItemConfig>
|
|
96031
|
+
/**
|
|
96032
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
96033
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
96034
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-overflowTwinConfig)
|
|
96035
|
+
*/
|
|
96036
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
95072
96037
|
/**
|
|
95073
96038
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
95074
96039
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -95196,7 +96161,7 @@ type TooltipConfig = {
|
|
|
95196
96161
|
* (if explicitly specified) will be used as the `stateId`.
|
|
95197
96162
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-stateId)
|
|
95198
96163
|
*/
|
|
95199
|
-
stateId?: string
|
|
96164
|
+
stateId?: string|null
|
|
95200
96165
|
/**
|
|
95201
96166
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
95202
96167
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -96114,6 +97079,12 @@ type WidgetConfig = {
|
|
|
96114
97079
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
96115
97080
|
*/
|
|
96116
97081
|
monitorResize?: boolean|object
|
|
97082
|
+
/**
|
|
97083
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
97084
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
97085
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-overflowTwinConfig)
|
|
97086
|
+
*/
|
|
97087
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
96117
97088
|
/**
|
|
96118
97089
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
96119
97090
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -97867,6 +98838,12 @@ type YearPickerConfig = {
|
|
|
97867
98838
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-namedItems)
|
|
97868
98839
|
*/
|
|
97869
98840
|
namedItems?: Record<string, ContainerItemConfig>
|
|
98841
|
+
/**
|
|
98842
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
98843
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
98844
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-overflowTwinConfig)
|
|
98845
|
+
*/
|
|
98846
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
97870
98847
|
/**
|
|
97871
98848
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
97872
98849
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -97971,7 +98948,7 @@ type YearPickerConfig = {
|
|
|
97971
98948
|
* (if explicitly specified) will be used as the `stateId`.
|
|
97972
98949
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-stateId)
|
|
97973
98950
|
*/
|
|
97974
|
-
stateId?: string
|
|
98951
|
+
stateId?: string|null
|
|
97975
98952
|
/**
|
|
97976
98953
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
97977
98954
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -98957,6 +99934,12 @@ type UndoRedoBaseConfig = {
|
|
|
98957
99934
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-namedItems)
|
|
98958
99935
|
*/
|
|
98959
99936
|
namedItems?: Record<string, ContainerItemConfig>
|
|
99937
|
+
/**
|
|
99938
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
99939
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
99940
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-overflowTwinConfig)
|
|
99941
|
+
*/
|
|
99942
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
98960
99943
|
/**
|
|
98961
99944
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
98962
99945
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -99919,6 +100902,12 @@ type AISettingsPanelConfig = {
|
|
|
99919
100902
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-namedItems)
|
|
99920
100903
|
*/
|
|
99921
100904
|
namedItems?: Record<string, ContainerItemConfig>
|
|
100905
|
+
/**
|
|
100906
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
100907
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
100908
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-overflowTwinConfig)
|
|
100909
|
+
*/
|
|
100910
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
99922
100911
|
/**
|
|
99923
100912
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
99924
100913
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -101089,6 +102078,12 @@ type ChatPanelConfig = {
|
|
|
101089
102078
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-namedItems)
|
|
101090
102079
|
*/
|
|
101091
102080
|
namedItems?: Record<string, ContainerItemConfig>
|
|
102081
|
+
/**
|
|
102082
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
102083
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
102084
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-overflowTwinConfig)
|
|
102085
|
+
*/
|
|
102086
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
101092
102087
|
/**
|
|
101093
102088
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
101094
102089
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -101193,7 +102188,7 @@ type ChatPanelConfig = {
|
|
|
101193
102188
|
* (if explicitly specified) will be used as the `stateId`.
|
|
101194
102189
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-stateId)
|
|
101195
102190
|
*/
|
|
101196
|
-
stateId?: string
|
|
102191
|
+
stateId?: string|null
|
|
101197
102192
|
/**
|
|
101198
102193
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
101199
102194
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -102407,6 +103402,12 @@ type ConfirmationDialogConfig = {
|
|
|
102407
103402
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-namedItems)
|
|
102408
103403
|
*/
|
|
102409
103404
|
namedItems?: Record<string, ContainerItemConfig>
|
|
103405
|
+
/**
|
|
103406
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
103407
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
103408
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-overflowTwinConfig)
|
|
103409
|
+
*/
|
|
103410
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
102410
103411
|
/**
|
|
102411
103412
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
102412
103413
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -103368,6 +104369,12 @@ type HistogramConfig = {
|
|
|
103368
104369
|
* to omit zero height bars.
|
|
103369
104370
|
*/
|
|
103370
104371
|
omitZeroHeightBars?: boolean
|
|
104372
|
+
/**
|
|
104373
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
104374
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
104375
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-overflowTwinConfig)
|
|
104376
|
+
*/
|
|
104377
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
103371
104378
|
/**
|
|
103372
104379
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
103373
104380
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -104198,6 +105205,12 @@ type ScaleConfig = {
|
|
|
104198
105205
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
104199
105206
|
*/
|
|
104200
105207
|
monitorResize?: boolean|object
|
|
105208
|
+
/**
|
|
105209
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
105210
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
105211
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-overflowTwinConfig)
|
|
105212
|
+
*/
|
|
105213
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
104201
105214
|
/**
|
|
104202
105215
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
104203
105216
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -105713,10 +106726,10 @@ type ActionColumnConfig = {
|
|
|
105713
106726
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
105714
106727
|
* @param {any} renderData.groupRowFor Current group value
|
|
105715
106728
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
105716
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
106729
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
105717
106730
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
105718
106731
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
105719
|
-
* @param {number} renderData.count Number of records in the group
|
|
106732
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
105720
106733
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
105721
106734
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
105722
106735
|
*/
|
|
@@ -106389,10 +107402,10 @@ type AggregateColumnConfig = {
|
|
|
106389
107402
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
106390
107403
|
* @param {any} renderData.groupRowFor Current group value
|
|
106391
107404
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
106392
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
107405
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
106393
107406
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
106394
107407
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
106395
|
-
* @param {number} renderData.count Number of records in the group
|
|
107408
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
106396
107409
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
106397
107410
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
106398
107411
|
*/
|
|
@@ -107121,10 +108134,10 @@ type ChartColumnConfig = {
|
|
|
107121
108134
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
107122
108135
|
* @param {any} renderData.groupRowFor Current group value
|
|
107123
108136
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
107124
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
108137
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
107125
108138
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
107126
108139
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
107127
|
-
* @param {number} renderData.count Number of records in the group
|
|
108140
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
107128
108141
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
107129
108142
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
107130
108143
|
*/
|
|
@@ -107858,10 +108871,10 @@ type CheckColumnConfig = {
|
|
|
107858
108871
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
107859
108872
|
* @param {any} renderData.groupRowFor Current group value
|
|
107860
108873
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
107861
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
108874
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
107862
108875
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
107863
108876
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
107864
|
-
* @param {number} renderData.count Number of records in the group
|
|
108877
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
107865
108878
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
107866
108879
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
107867
108880
|
*/
|
|
@@ -108610,10 +109623,10 @@ type ColorColumnConfig = {
|
|
|
108610
109623
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
108611
109624
|
* @param {any} renderData.groupRowFor Current group value
|
|
108612
109625
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
108613
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
109626
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
108614
109627
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
108615
109628
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
108616
|
-
* @param {number} renderData.count Number of records in the group
|
|
109629
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
108617
109630
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
108618
109631
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
108619
109632
|
*/
|
|
@@ -109307,10 +110320,10 @@ type ColumnConfig = {
|
|
|
109307
110320
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
109308
110321
|
* @param {any} renderData.groupRowFor Current group value
|
|
109309
110322
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
109310
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
110323
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
109311
110324
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
109312
110325
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
109313
|
-
* @param {number} renderData.count Number of records in the group
|
|
110326
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
109314
110327
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
109315
110328
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
109316
110329
|
*/
|
|
@@ -110250,7 +111263,7 @@ export class Column extends Model {
|
|
|
110250
111263
|
* behaviour can be configured by setting [resizeToFitIncludesHeader](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-resizeToFitIncludesHeader).
|
|
110251
111264
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#function-resizeToFitContent)
|
|
110252
111265
|
* @param {number,number[]} widthMin Minimum allowed width. If content width is less than this, this width is used instead. If this parameter is an array, the first element is `widthMin` and the seconds is `widthMax`.
|
|
110253
|
-
* @param {number} widthMax Maximum allowed width. If the content width is greater than this number, this width is used instead.
|
|
111266
|
+
* @param {number} widthMax Maximum allowed width. If the content width is greater than this number, this width is used instead, unless the column's own [minWidth](https://bryntum.com/products/grid/docs/api/Grid/column/Column#config-minWidth) is larger.
|
|
110254
111267
|
*/
|
|
110255
111268
|
resizeToFitContent(widthMin: number|number[], widthMax: number): Promise<void>;
|
|
110256
111269
|
/**
|
|
@@ -110587,10 +111600,10 @@ type CurrencyColumnConfig = {
|
|
|
110587
111600
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
110588
111601
|
* @param {any} renderData.groupRowFor Current group value
|
|
110589
111602
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
110590
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
111603
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
110591
111604
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
110592
111605
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
110593
|
-
* @param {number} renderData.count Number of records in the group
|
|
111606
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
110594
111607
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
110595
111608
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
110596
111609
|
*/
|
|
@@ -111301,10 +112314,10 @@ type DateColumnConfig = {
|
|
|
111301
112314
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
111302
112315
|
* @param {any} renderData.groupRowFor Current group value
|
|
111303
112316
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
111304
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
112317
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
111305
112318
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
111306
112319
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
111307
|
-
* @param {number} renderData.count Number of records in the group
|
|
112320
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
111308
112321
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
111309
112322
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
111310
112323
|
*/
|
|
@@ -112025,10 +113038,10 @@ type NumberColumnConfig = {
|
|
|
112025
113038
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
112026
113039
|
* @param {any} renderData.groupRowFor Current group value
|
|
112027
113040
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
112028
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
113041
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
112029
113042
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
112030
113043
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
112031
|
-
* @param {number} renderData.count Number of records in the group
|
|
113044
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
112032
113045
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
112033
113046
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
112034
113047
|
*/
|
|
@@ -112765,10 +113778,10 @@ type PercentColumnConfig = {
|
|
|
112765
113778
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
112766
113779
|
* @param {any} renderData.groupRowFor Current group value
|
|
112767
113780
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
112768
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
113781
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
112769
113782
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
112770
113783
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
112771
|
-
* @param {number} renderData.count Number of records in the group
|
|
113784
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
112772
113785
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
112773
113786
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
112774
113787
|
*/
|
|
@@ -113503,10 +114516,10 @@ type RatingColumnConfig = {
|
|
|
113503
114516
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
113504
114517
|
* @param {any} renderData.groupRowFor Current group value
|
|
113505
114518
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
113506
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
114519
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
113507
114520
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
113508
114521
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
113509
|
-
* @param {number} renderData.count Number of records in the group
|
|
114522
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
113510
114523
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
113511
114524
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
113512
114525
|
*/
|
|
@@ -114153,10 +115166,10 @@ type RowNumberColumnConfig = {
|
|
|
114153
115166
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
114154
115167
|
* @param {any} renderData.groupRowFor Current group value
|
|
114155
115168
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
114156
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
115169
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
114157
115170
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
114158
115171
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
114159
|
-
* @param {number} renderData.count Number of records in the group
|
|
115172
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
114160
115173
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
114161
115174
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
114162
115175
|
*/
|
|
@@ -114783,10 +115796,10 @@ type SparklineColumnConfig = {
|
|
|
114783
115796
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
114784
115797
|
* @param {any} renderData.groupRowFor Current group value
|
|
114785
115798
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
114786
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
115799
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
114787
115800
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
114788
115801
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
114789
|
-
* @param {number} renderData.count Number of records in the group
|
|
115802
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
114790
115803
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
114791
115804
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
114792
115805
|
*/
|
|
@@ -115469,10 +116482,10 @@ type TemplateColumnConfig = {
|
|
|
115469
116482
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
115470
116483
|
* @param {any} renderData.groupRowFor Current group value
|
|
115471
116484
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
115472
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
116485
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
115473
116486
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
115474
116487
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
115475
|
-
* @param {number} renderData.count Number of records in the group
|
|
116488
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
115476
116489
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
115477
116490
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
115478
116491
|
*/
|
|
@@ -116160,10 +117173,10 @@ type TimeColumnConfig = {
|
|
|
116160
117173
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
116161
117174
|
* @param {any} renderData.groupRowFor Current group value
|
|
116162
117175
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
116163
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
117176
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
116164
117177
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
116165
117178
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
116166
|
-
* @param {number} renderData.count Number of records in the group
|
|
117179
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
116167
117180
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
116168
117181
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
116169
117182
|
*/
|
|
@@ -116854,10 +117867,10 @@ type TreeColumnConfig = {
|
|
|
116854
117867
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
116855
117868
|
* @param {any} renderData.groupRowFor Current group value
|
|
116856
117869
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
116857
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
117870
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
116858
117871
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
116859
117872
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
116860
|
-
* @param {number} renderData.count Number of records in the group
|
|
117873
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
116861
117874
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
116862
117875
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
116863
117876
|
*/
|
|
@@ -117574,10 +118587,10 @@ type WidgetColumnConfig = {
|
|
|
117574
118587
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
117575
118588
|
* @param {any} renderData.groupRowFor Current group value
|
|
117576
118589
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
117577
|
-
* @param {Core.data.Model[]} renderData.groupRecords Records in the group
|
|
118590
|
+
* @param {Core.data.Model[]} renderData.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry is the group footer record, so `groupRecords.length` is one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
117578
118591
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
117579
118592
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
117580
|
-
* @param {number} renderData.count Number of records in the group
|
|
118593
|
+
* @param {number} renderData.count Number of records in the group, excluding the group footer record
|
|
117581
118594
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
117582
118595
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
117583
118596
|
*/
|
|
@@ -121439,6 +122452,12 @@ type CellTooltipConfig = {
|
|
|
121439
122452
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-namedItems)
|
|
121440
122453
|
*/
|
|
121441
122454
|
namedItems?: Record<string, ContainerItemConfig>
|
|
122455
|
+
/**
|
|
122456
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
122457
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
122458
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-overflowTwinConfig)
|
|
122459
|
+
*/
|
|
122460
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
121442
122461
|
/**
|
|
121443
122462
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
121444
122463
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -121566,7 +122585,7 @@ type CellTooltipConfig = {
|
|
|
121566
122585
|
* (if explicitly specified) will be used as the `stateId`.
|
|
121567
122586
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-stateId)
|
|
121568
122587
|
*/
|
|
121569
|
-
stateId?: string
|
|
122588
|
+
stateId?: string|null
|
|
121570
122589
|
/**
|
|
121571
122590
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
121572
122591
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -122135,6 +123154,7 @@ type ColumnAutoWidthConfig = {
|
|
|
122135
123154
|
* The default `autoWidth` option for columns with `autoWidth: true`. This can
|
|
122136
123155
|
* be a single number for the minimum column width, or an array of two numbers
|
|
122137
123156
|
* for the `[minWidth, maxWidth]`.
|
|
123157
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnAutoWidth#config-default)
|
|
122138
123158
|
*/
|
|
122139
123159
|
default?: number|number[]
|
|
122140
123160
|
/**
|
|
@@ -123278,6 +124298,12 @@ type ColumnResizeConfig = {
|
|
|
123278
124298
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-localizableProperties)
|
|
123279
124299
|
*/
|
|
123280
124300
|
localizableProperties?: string[]
|
|
124301
|
+
/**
|
|
124302
|
+
* The [Popup](https://bryntum.com/products/grid/docs/api/Core/widget/Popup) shown by the "Resize column" header menu item, allowing the column width to be
|
|
124303
|
+
* set from the keyboard. Created lazily on first use and destroyed automatically with the feature.
|
|
124304
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-resizeDialog)
|
|
124305
|
+
*/
|
|
124306
|
+
resizeDialog?: PopupConfig
|
|
123281
124307
|
/**
|
|
123282
124308
|
* Fires before an object is destroyed.
|
|
123283
124309
|
* @param {object} event Event object
|
|
@@ -123327,6 +124353,11 @@ export class ColumnResize extends InstancePlugin {
|
|
|
123327
124353
|
* Identifies an object as an instance of [ColumnResize](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize) class, or subclass thereof.
|
|
123328
124354
|
*/
|
|
123329
124355
|
readonly isColumnResize: boolean
|
|
124356
|
+
/**
|
|
124357
|
+
* The [Popup](https://bryntum.com/products/grid/docs/api/Core/widget/Popup) shown by the "Resize column" header menu item, allowing the column width to be
|
|
124358
|
+
* set from the keyboard. Created lazily on first use and destroyed automatically with the feature.
|
|
124359
|
+
*/
|
|
124360
|
+
resizeDialog: PopupConfig|Popup
|
|
123330
124361
|
/**
|
|
123331
124362
|
* Fires before an object is destroyed.
|
|
123332
124363
|
* @param {object} event Event object
|
|
@@ -123352,6 +124383,12 @@ export class ColumnResize extends InstancePlugin {
|
|
|
123352
124383
|
* @param {PdfExportConfig} [config]
|
|
123353
124384
|
*/
|
|
123354
124385
|
constructor(config?: ColumnResizeConfig);
|
|
124386
|
+
/**
|
|
124387
|
+
* Shows the [resize dialog](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-resizeDialog) for the passed column, allowing its width to be set from
|
|
124388
|
+
* the keyboard.
|
|
124389
|
+
* @param {Grid.column.Column} column The column to resize
|
|
124390
|
+
*/
|
|
124391
|
+
showResizeDialog(column: Column): Popup;
|
|
123355
124392
|
}
|
|
123356
124393
|
|
|
123357
124394
|
/**
|
|
@@ -124395,7 +125432,8 @@ type GroupConfig = {
|
|
|
124395
125432
|
* @param {object} context Renderer context data
|
|
124396
125433
|
* @param {any} context.groupRowFor The value of the `field` for the group. Type depends on `field` used for grouping
|
|
124397
125434
|
* @param {Core.data.Model} context.record The group record representing the group
|
|
124398
|
-
* @param {
|
|
125435
|
+
* @param {Core.data.Model[]} context.groupRecords Records in the group. When the [GroupSummary](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary) feature is enabled with its default [target](https://bryntum.com/products/grid/docs/api/Grid/feature/GroupSummary#config-target) of `'footer'`, the last entry may be the group footer record, making `groupRecords.length` one more than `count`. Filter it out using its [isGroupFooter](https://bryntum.com/products/grid/docs/api/Core/data/Model#property-isGroupFooter) flag if needed
|
|
125436
|
+
* @param {number} context.count Number of records in the group, excluding the group footer record
|
|
124399
125437
|
* @param {Grid.column.Column} context.column The column the renderer runs for
|
|
124400
125438
|
* @param {boolean} context.isFirstColumn True, if `column` is the first column. If `RowNumberColumn` is the real first column, it's not taken into account
|
|
124401
125439
|
* @param {Grid.column.Column} context.groupColumn The column under which the `field` is shown
|
|
@@ -124405,7 +125443,7 @@ type GroupConfig = {
|
|
|
124405
125443
|
* @param {HTMLElement} context.rowElement The owning row element
|
|
124406
125444
|
* @returns {DomConfig,string,void}
|
|
124407
125445
|
*/
|
|
124408
|
-
renderer?: (context: { groupRowFor: any, record: Model, count: number, column: Column, isFirstColumn: boolean, groupColumn: Column, size: { height: number }, grid: Grid, rowElement: HTMLElement }) => DomConfig|string|void
|
|
125446
|
+
renderer?: (context: { groupRowFor: any, record: Model, groupRecords: Model[], count: number, column: Column, isFirstColumn: boolean, groupColumn: Column, size: { height: number }, grid: Grid, rowElement: HTMLElement }) => DomConfig|string|void
|
|
124409
125447
|
/**
|
|
124410
125448
|
* Set to `true` to show the number of members of each group in the group header. Not applicable when using
|
|
124411
125449
|
* Scheduler in vertical mode.
|
|
@@ -127339,6 +128377,7 @@ type RowReorderConfig = {
|
|
|
127339
128377
|
/**
|
|
127340
128378
|
* Set to `true` to preserve sorters after a drop operation, if that operation leads to the store still being
|
|
127341
128379
|
* sorted.
|
|
128380
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder#config-preserveSorters)
|
|
127342
128381
|
*/
|
|
127343
128382
|
preserveSorters?: boolean
|
|
127344
128383
|
/**
|
|
@@ -129608,9 +130647,9 @@ export class TreeGroup extends InstancePlugin {
|
|
|
129608
130647
|
/**
|
|
129609
130648
|
* Transforms the data according to the supplied levels.
|
|
129610
130649
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup#function-group)
|
|
129611
|
-
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree
|
|
129612
|
-
* @param {Core.data.Model} levels.record record
|
|
129613
|
-
* @param {string} levels.returns Value to determine a parent
|
|
130650
|
+
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree. When a function is supplied it receives the leaf record and returns the grouping key.
|
|
130651
|
+
* @param {Core.data.Model} levels.record The leaf record. Stores that wrap originals (such as Scheduler Pro's `ResourceUtilizationStore`) attach the underlying record on the wrapper's `origin` field, so callbacks can destructure with `({ origin }) => ...`.
|
|
130652
|
+
* @param {string} levels.returns Value to determine a parent. Return a primitive grouping key (typically a `String`), another `Model` to group under, or the [StopBranch](https://bryntum.com/products/grid/docs/api/Core/data/Store#property-StopBranch-static) sentinel to stop further grouping for that branch.
|
|
129614
130653
|
*/
|
|
129615
130654
|
group(levels: (string|Column|((record: Model) => string))[]): Promise<void>;
|
|
129616
130655
|
}
|
|
@@ -130510,6 +131549,11 @@ type ExcelExporterConfig = {
|
|
|
130510
131549
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-convertEmptyValueToEmptyString)
|
|
130511
131550
|
*/
|
|
130512
131551
|
convertEmptyValueToEmptyString?: boolean
|
|
131552
|
+
/**
|
|
131553
|
+
* MIME type used when creating the CSV Blob for download. Some environments (e.g. Salesforce Lightning Web
|
|
131554
|
+
* Security) block `text/csv` for `URL.createObjectURL`. Use `application/octet-stream` there instead.
|
|
131555
|
+
*/
|
|
131556
|
+
csvMimeType?: string
|
|
130513
131557
|
/**
|
|
130514
131558
|
* Defines how dates in a cell will be formatted
|
|
130515
131559
|
*/
|
|
@@ -130565,6 +131609,12 @@ type ExcelExporterConfig = {
|
|
|
130565
131609
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-xlsProvider)
|
|
130566
131610
|
*/
|
|
130567
131611
|
xlsProvider?: typeof XlsProviderBase
|
|
131612
|
+
/**
|
|
131613
|
+
* MIME type used when creating the XLSX download Blob. Some environments (e.g. Salesforce Lightning Web
|
|
131614
|
+
* Security) block the default XLSX MIME type for `URL.createObjectURL`. Use `application/octet-stream` in such case
|
|
131615
|
+
* instead.
|
|
131616
|
+
*/
|
|
131617
|
+
xlsxMimeType?: string
|
|
130568
131618
|
/**
|
|
130569
131619
|
* Fires before an object is destroyed.
|
|
130570
131620
|
* @param {object} event Event object
|
|
@@ -130647,10 +131697,12 @@ export class ExcelExporter extends InstancePlugin {
|
|
|
130647
131697
|
* @param {boolean,object} [config.csv] Set to `true` to output as a CSV file, or as an object where you can specify delimiters.
|
|
130648
131698
|
* @param {string} [config.csv.columnDelimiter] The CSV delimiter to separate values on one line, defaults to `,`.
|
|
130649
131699
|
* @param {string} [config.csv.lineDelimiter] The CSV delimiter to separate lines, defaults to `\n`.
|
|
131700
|
+
* @param {string} [config.csvMimeType] MIME type used when creating the CSV Blob. Overrides [csvMimeType](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-csvMimeType).
|
|
131701
|
+
* @param {string} [config.xlsxMimeType] MIME type used when creating the XLSX download Blob. Overrides [xlsxMimeType](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-xlsxMimeType).
|
|
130650
131702
|
* @param {string[],object[]} [config.columns] An array of column configuration objects
|
|
130651
131703
|
* @param {Core.data.Model[]} [config.rows] An array of records to export
|
|
130652
131704
|
*/
|
|
130653
|
-
export(config: { filename?: string, dateFormat?: string, csv?: boolean|{ columnDelimiter?: string, lineDelimiter?: string }, columns?: string[]|object[], rows?: Model[] }): Promise<any>;
|
|
131705
|
+
export(config: { filename?: string, dateFormat?: string, csv?: boolean|{ columnDelimiter?: string, lineDelimiter?: string }, csvMimeType?: string, xlsxMimeType?: string, columns?: string[]|object[], rows?: Model[] }): Promise<any>;
|
|
130654
131706
|
}
|
|
130655
131707
|
|
|
130656
131708
|
/**
|
|
@@ -130874,9 +131926,10 @@ export class WriteExcelFileProvider {
|
|
|
130874
131926
|
* @param {object} config.sheet *deprecated, to be removed in 7.0* Object with columns and data
|
|
130875
131927
|
* @param {any[][]} config.sheet.data Array of rows, each row is an array of cells
|
|
130876
131928
|
* @param {XLSColumn[]} config.sheet.cols Array of columns
|
|
130877
|
-
* @param {string} config.MIME
|
|
131929
|
+
* @param {string} config.mimeType MIME type used when creating the download Blob, passed from [xlsxMimeType](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-xlsxMimeType).
|
|
131930
|
+
* @param {string} [config.MIME] *deprecated, use `mimeType` instead*
|
|
130878
131931
|
*/
|
|
130879
|
-
static write(config: { filename: string, rows: any[], columns: XLSColumn[], sheet: { data: any[], cols: XLSColumn[] },
|
|
131932
|
+
static write(config: { filename: string, rows: any[], columns: XLSColumn[], sheet: { data: any[], cols: XLSColumn[] }, mimeType: string, MIME?: string }): Promise<any>;
|
|
130880
131933
|
}
|
|
130881
131934
|
|
|
130882
131935
|
/**
|
|
@@ -130885,17 +131938,18 @@ export class WriteExcelFileProvider {
|
|
|
130885
131938
|
*/
|
|
130886
131939
|
export class XlsProviderBase {
|
|
130887
131940
|
/**
|
|
130888
|
-
* Implement this method to write data to an xls file
|
|
131941
|
+
* Implement this method to write data to an xls file. May return a Promise if the
|
|
131942
|
+
* implementation needs to perform asynchronous work (e.g. awaiting a 3rd-party library).
|
|
131943
|
+
* [ExcelExporter](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter) awaits the return value, so both sync
|
|
131944
|
+
* and async implementations are supported.
|
|
130889
131945
|
* @param {object} config
|
|
130890
131946
|
* @param {string} config.filename Name of the exported file
|
|
130891
131947
|
* @param {any[][]} config.rows Array of rows, each row is an array of cells
|
|
130892
131948
|
* @param {XLSColumn[]} config.columns Array of columns
|
|
130893
|
-
* @param {
|
|
130894
|
-
* @param {
|
|
130895
|
-
* @param {XLSColumn[]} config.sheet.cols Array of columns
|
|
130896
|
-
* @param {string} config.MIME File MIME type
|
|
131949
|
+
* @param {string} config.mimeType MIME type to use when creating the download Blob. Configured via [xlsxMimeType](https://bryntum.com/products/grid/docs/api/Grid/feature/experimental/ExcelExporter#config-xlsxMimeType).
|
|
131950
|
+
* @param {string} [config.MIME] *deprecated, use `mimeType` instead*
|
|
130897
131951
|
*/
|
|
130898
|
-
static write(config: { filename: string, rows: any[], columns: XLSColumn[],
|
|
131952
|
+
static write(config: { filename: string, rows: any[], columns: XLSColumn[], mimeType: string, MIME?: string }): Promise<void|any>;
|
|
130899
131953
|
}
|
|
130900
131954
|
|
|
130901
131955
|
/**
|
|
@@ -131267,6 +132321,10 @@ export class PdfExport extends InstancePlugin {
|
|
|
131267
132321
|
* rows with an additional buffer.
|
|
131268
132322
|
*/
|
|
131269
132323
|
rowReadyCondition: () => void
|
|
132324
|
+
/**
|
|
132325
|
+
* Set to `true` to receive binary file from the server instead of download link.
|
|
132326
|
+
*/
|
|
132327
|
+
sendAsBinary: boolean
|
|
131270
132328
|
/**
|
|
131271
132329
|
* Determines whether to stream exported pages directly to the export server using WebSocket connection to
|
|
131272
132330
|
* offload client application.
|
|
@@ -135874,6 +136932,12 @@ type GridConfig = {
|
|
|
135874
136932
|
* Grid monitors window resize by default.
|
|
135875
136933
|
*/
|
|
135876
136934
|
monitorResize?: boolean
|
|
136935
|
+
/**
|
|
136936
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
136937
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
136938
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-overflowTwinConfig)
|
|
136939
|
+
*/
|
|
136940
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
135877
136941
|
/**
|
|
135878
136942
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
135879
136943
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -136025,7 +137089,7 @@ type GridConfig = {
|
|
|
136025
137089
|
* (if explicitly specified) will be used as the `stateId`.
|
|
136026
137090
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-stateId)
|
|
136027
137091
|
*/
|
|
136028
|
-
stateId?: string
|
|
137092
|
+
stateId?: string|null
|
|
136029
137093
|
/**
|
|
136030
137094
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
136031
137095
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -139935,6 +140999,12 @@ type GridBaseConfig = {
|
|
|
139935
140999
|
* Grid monitors window resize by default.
|
|
139936
141000
|
*/
|
|
139937
141001
|
monitorResize?: boolean
|
|
141002
|
+
/**
|
|
141003
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
141004
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
141005
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-overflowTwinConfig)
|
|
141006
|
+
*/
|
|
141007
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
139938
141008
|
/**
|
|
139939
141009
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
139940
141010
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -140086,7 +141156,7 @@ type GridBaseConfig = {
|
|
|
140086
141156
|
* (if explicitly specified) will be used as the `stateId`.
|
|
140087
141157
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
140088
141158
|
*/
|
|
140089
|
-
stateId?: string
|
|
141159
|
+
stateId?: string|null
|
|
140090
141160
|
/**
|
|
140091
141161
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
140092
141162
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -141514,6 +142584,12 @@ export class GridBase extends Panel {
|
|
|
141514
142584
|
* Gets or sets grid's state. Check out [GridState](https://bryntum.com/products/grid/docs/api/Grid/view/mixin/GridState) mixin for details.
|
|
141515
142585
|
*/
|
|
141516
142586
|
state: GridStateInfo
|
|
142587
|
+
/**
|
|
142588
|
+
* The key to use when saving this object's state in the [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider). If this config is
|
|
142589
|
+
* not assigned, and [stateful](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateful) is not set to `false`, the [id](#Core/widget/Widget#config-id)
|
|
142590
|
+
* (if explicitly specified) will be used as the `stateId`.
|
|
142591
|
+
*/
|
|
142592
|
+
stateId: string|null
|
|
141517
142593
|
/**
|
|
141518
142594
|
* The properties of this settings object controls how grid is restored from state data.
|
|
141519
142595
|
*/
|
|
@@ -142634,9 +143710,9 @@ export class GridBase extends Panel {
|
|
|
142634
143710
|
/**
|
|
142635
143711
|
* Transforms the data according to the supplied levels.
|
|
142636
143712
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#function-group)
|
|
142637
|
-
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree
|
|
142638
|
-
* @param {Core.data.Model} levels.record record
|
|
142639
|
-
* @param {string} levels.returns Value to determine a parent
|
|
143713
|
+
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree. When a function is supplied it receives the leaf record and returns the grouping key.
|
|
143714
|
+
* @param {Core.data.Model} levels.record The leaf record. Stores that wrap originals (such as Scheduler Pro's `ResourceUtilizationStore`) attach the underlying record on the wrapper's `origin` field, so callbacks can destructure with `({ origin }) => ...`.
|
|
143715
|
+
* @param {string} levels.returns Value to determine a parent. Return a primitive grouping key (typically a `String`), another `Model` to group under, or the [StopBranch](https://bryntum.com/products/grid/docs/api/Core/data/Store#property-StopBranch-static) sentinel to stop further grouping for that branch.
|
|
142640
143716
|
*/
|
|
142641
143717
|
group(levels: (string|Column|((record: Model) => string))[]): Promise<void>;
|
|
142642
143718
|
/**
|
|
@@ -142779,6 +143855,11 @@ export class GridBase extends Panel {
|
|
|
142779
143855
|
* Rerenders all grid rows, completely replacing all row elements with new ones
|
|
142780
143856
|
*/
|
|
142781
143857
|
renderRows(): void;
|
|
143858
|
+
/**
|
|
143859
|
+
* Resets this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state) to the default state captured when the object was created,
|
|
143860
|
+
* undoing any state changes applied since then.
|
|
143861
|
+
*/
|
|
143862
|
+
resetDefaultState(): void;
|
|
142782
143863
|
/**
|
|
142783
143864
|
* Restore scroll state. If state is not specified, restores the last stored state.
|
|
142784
143865
|
* @param {object} [state] Scroll state, optional
|
|
@@ -143490,6 +144571,12 @@ type SubGridConfig = {
|
|
|
143490
144571
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
143491
144572
|
*/
|
|
143492
144573
|
monitorResize?: boolean|object
|
|
144574
|
+
/**
|
|
144575
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
144576
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
144577
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/SubGrid#config-overflowTwinConfig)
|
|
144578
|
+
*/
|
|
144579
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
143493
144580
|
/**
|
|
143494
144581
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
143495
144582
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -146414,6 +147501,12 @@ type TreeGridConfig = {
|
|
|
146414
147501
|
* Grid monitors window resize by default.
|
|
146415
147502
|
*/
|
|
146416
147503
|
monitorResize?: boolean
|
|
147504
|
+
/**
|
|
147505
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
147506
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
147507
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-overflowTwinConfig)
|
|
147508
|
+
*/
|
|
147509
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
146417
147510
|
/**
|
|
146418
147511
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
146419
147512
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -146565,7 +147658,7 @@ type TreeGridConfig = {
|
|
|
146565
147658
|
* (if explicitly specified) will be used as the `stateId`.
|
|
146566
147659
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-stateId)
|
|
146567
147660
|
*/
|
|
146568
|
-
stateId?: string
|
|
147661
|
+
stateId?: string|null
|
|
146569
147662
|
/**
|
|
146570
147663
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
146571
147664
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -148773,6 +149866,12 @@ type ExportDialogConfig = {
|
|
|
148773
149866
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-namedItems)
|
|
148774
149867
|
*/
|
|
148775
149868
|
namedItems?: Record<string, ContainerItemConfig>
|
|
149869
|
+
/**
|
|
149870
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
149871
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
149872
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-overflowTwinConfig)
|
|
149873
|
+
*/
|
|
149874
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
148776
149875
|
/**
|
|
148777
149876
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
148778
149877
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -148897,7 +149996,7 @@ type ExportDialogConfig = {
|
|
|
148897
149996
|
* (if explicitly specified) will be used as the `stateId`.
|
|
148898
149997
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-stateId)
|
|
148899
149998
|
*/
|
|
148900
|
-
stateId?: string
|
|
149999
|
+
stateId?: string|null
|
|
148901
150000
|
/**
|
|
148902
150001
|
* The `StateProvider` to use to save and restore this object's [state](https://bryntum.com/products/grid/docs/api/Core/mixin/State#property-state). By default, `state`
|
|
148903
150002
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -150391,6 +151490,7 @@ type AIFilterFieldConfig = {
|
|
|
150391
151490
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
150392
151491
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
150393
151492
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
151493
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-clearable)
|
|
150394
151494
|
*/
|
|
150395
151495
|
clearable?: boolean|FieldTriggerConfig
|
|
150396
151496
|
/**
|
|
@@ -150730,6 +151830,12 @@ type AIFilterFieldConfig = {
|
|
|
150730
151830
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
|
|
150731
151831
|
*/
|
|
150732
151832
|
name?: string
|
|
151833
|
+
/**
|
|
151834
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
151835
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
151836
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-overflowTwinConfig)
|
|
151837
|
+
*/
|
|
151838
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
150733
151839
|
/**
|
|
150734
151840
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
150735
151841
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -151575,6 +152681,7 @@ type ChecklistFilterComboConfig = {
|
|
|
151575
152681
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
151576
152682
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
151577
152683
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
152684
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-clearable)
|
|
151578
152685
|
*/
|
|
151579
152686
|
clearable?: boolean|FieldTriggerConfig
|
|
151580
152687
|
/**
|
|
@@ -152019,6 +153126,12 @@ type ChecklistFilterComboConfig = {
|
|
|
152019
153126
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
152020
153127
|
*/
|
|
152021
153128
|
name?: string
|
|
153129
|
+
/**
|
|
153130
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
153131
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
153132
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-overflowTwinConfig)
|
|
153133
|
+
*/
|
|
153134
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
152022
153135
|
/**
|
|
152023
153136
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
152024
153137
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -152996,6 +154109,12 @@ type GridChartDesignerConfig = {
|
|
|
152996
154109
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
152997
154110
|
*/
|
|
152998
154111
|
monitorResize?: boolean|object
|
|
154112
|
+
/**
|
|
154113
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
154114
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
154115
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-overflowTwinConfig)
|
|
154116
|
+
*/
|
|
154117
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
152999
154118
|
/**
|
|
153000
154119
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
153001
154120
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -153976,6 +155095,12 @@ type GridFieldFilterPickerConfig = {
|
|
|
153976
155095
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-operators)
|
|
153977
155096
|
*/
|
|
153978
155097
|
operators?: object
|
|
155098
|
+
/**
|
|
155099
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
155100
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
155101
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-overflowTwinConfig)
|
|
155102
|
+
*/
|
|
155103
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
153979
155104
|
/**
|
|
153980
155105
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
153981
155106
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -155056,6 +156181,12 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
155056
156181
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
155057
156182
|
*/
|
|
155058
156183
|
operators?: object
|
|
156184
|
+
/**
|
|
156185
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
156186
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
156187
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-overflowTwinConfig)
|
|
156188
|
+
*/
|
|
156189
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
155059
156190
|
/**
|
|
155060
156191
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
155061
156192
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -156109,6 +157240,12 @@ type GroupBarConfig = {
|
|
|
156109
157240
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
156110
157241
|
*/
|
|
156111
157242
|
multiSelect?: boolean
|
|
157243
|
+
/**
|
|
157244
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
157245
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
157246
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-overflowTwinConfig)
|
|
157247
|
+
*/
|
|
157248
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
156112
157249
|
/**
|
|
156113
157250
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
156114
157251
|
* [items](https://bryntum.com/products/grid/docs/api/Core/widget/Container#property-items) of a Container), this config will be ignored. In this case
|
|
@@ -156929,6 +158066,7 @@ type TreeComboConfig = {
|
|
|
156929
158066
|
* Show a trigger to clear field, if this field is not [readOnly](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-readOnly). The trigger is available
|
|
156930
158067
|
* in the [triggers](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers) object under the name `clear`. May also be an object which
|
|
156931
158068
|
* configures the `clear` [trigger](https://bryntum.com/products/grid/docs/api/Core/widget/Field#property-triggers).
|
|
158069
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-clearable)
|
|
156932
158070
|
*/
|
|
156933
158071
|
clearable?: boolean|FieldTriggerConfig
|
|
156934
158072
|
/**
|
|
@@ -157372,6 +158510,12 @@ type TreeComboConfig = {
|
|
|
157372
158510
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-name)
|
|
157373
158511
|
*/
|
|
157374
158512
|
name?: string
|
|
158513
|
+
/**
|
|
158514
|
+
* Customizes the config object used to create this widget's clone in a [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar)'s
|
|
158515
|
+
* overflow menu (see [overflow](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-overflow)).
|
|
158516
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-overflowTwinConfig)
|
|
158517
|
+
*/
|
|
158518
|
+
overflowTwinConfig?: OverflowTwinConfig|null
|
|
157375
158519
|
/**
|
|
157376
158520
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
157377
158521
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|