@bryntum/grid-trial 7.3.4 → 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/grid.css +1 -1
- package/grid.d.ts +999 -78
- package/grid.module.js +39 -39
- package/grid.thin.d.ts +162 -49
- 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`:
|
|
@@ -5186,7 +5209,11 @@ export class Model extends Base {
|
|
|
5186
5209
|
*/
|
|
5187
5210
|
isFullyLoaded: boolean
|
|
5188
5211
|
/**
|
|
5189
|
-
* 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
|
|
5190
5217
|
*/
|
|
5191
5218
|
readonly isGroupHeader: boolean
|
|
5192
5219
|
/**
|
|
@@ -11492,6 +11519,12 @@ type StateTrackingManagerConfig = {
|
|
|
11492
11519
|
* Enables [revision](https://bryntum.com/products/grid/docs/api/Gantt/guides/revisions/overview.md) tracking by STM
|
|
11493
11520
|
*/
|
|
11494
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
|
|
11495
11528
|
/**
|
|
11496
11529
|
* Fires before an object is destroyed.
|
|
11497
11530
|
* @param {object} event Event object
|
|
@@ -11635,7 +11668,9 @@ export class StateTrackingManager extends Base {
|
|
|
11635
11668
|
*/
|
|
11636
11669
|
readonly state: StateBase
|
|
11637
11670
|
/**
|
|
11638
|
-
* 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).
|
|
11639
11674
|
*/
|
|
11640
11675
|
readonly stores: Store[]
|
|
11641
11676
|
/**
|
|
@@ -11735,8 +11770,9 @@ export class StateTrackingManager extends Base {
|
|
|
11735
11770
|
/**
|
|
11736
11771
|
* Calls `fn` for each store registered in STM.
|
|
11737
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
|
|
11738
11774
|
*/
|
|
11739
|
-
forEachStore(fn: () => void): void;
|
|
11775
|
+
forEachStore(fn: () => void, includeStoreFieldStores?: boolean): void;
|
|
11740
11776
|
/**
|
|
11741
11777
|
* Returns `true` if any listener is registered for the specified `eventName`, or if `null`, for any event.
|
|
11742
11778
|
* @param {string} [eventName] The event to test for listeners, or `null` for any event.
|
|
@@ -14084,6 +14120,10 @@ export class BrowserHelper {
|
|
|
14084
14120
|
* Checks if browser is Safari.
|
|
14085
14121
|
*/
|
|
14086
14122
|
static readonly isSafari: boolean
|
|
14123
|
+
/**
|
|
14124
|
+
* Determines if the user is using a touch device.
|
|
14125
|
+
*/
|
|
14126
|
+
static readonly isTouchDevice: boolean
|
|
14087
14127
|
/**
|
|
14088
14128
|
* Checks if browser is Webkit.
|
|
14089
14129
|
*/
|
|
@@ -14521,6 +14561,12 @@ export class DateHelper {
|
|
|
14521
14561
|
* @param {DurationUnit,string} [defaultUnit] Default unit to use if only magnitude passed
|
|
14522
14562
|
*/
|
|
14523
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;
|
|
14524
14570
|
/**
|
|
14525
14571
|
* Parses a typed unit name, for example `'ms'` or `'hr'` or `'yr'` into the
|
|
14526
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)
|
|
@@ -14598,6 +14644,18 @@ export class DomHelper {
|
|
|
14598
14644
|
* you need to use [getThemeInfo](https://bryntum.com/products/grid/docs/api/Core/helper/DomHelper#function-getThemeInfo-static) and pass a context element.
|
|
14599
14645
|
*/
|
|
14600
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>
|
|
14601
14659
|
/**
|
|
14602
14660
|
* Set to `false` to not show focus renditions when using keyboard
|
|
14603
14661
|
*/
|
|
@@ -17307,7 +17365,99 @@ export class LocaleHelper {
|
|
|
17307
17365
|
static trimLocale(locale: object, toTrim: object): void;
|
|
17308
17366
|
}
|
|
17309
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
|
+
|
|
17310
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
|
|
17311
17461
|
/**
|
|
17312
17462
|
* Get/set currently used locale.
|
|
17313
17463
|
* Setter calls [applyLocale](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleManager#function-applyLocale).
|
|
@@ -17323,6 +17473,26 @@ export class LocaleManagerSingleton {
|
|
|
17323
17473
|
* if no localization is found at runtime.
|
|
17324
17474
|
*/
|
|
17325
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
|
|
17326
17496
|
/**
|
|
17327
17497
|
* Fires when a locale is applied
|
|
17328
17498
|
* @param {object} event Event object
|
|
@@ -17332,6 +17502,14 @@ export class LocaleManagerSingleton {
|
|
|
17332
17502
|
* @param {string} event.locale.oldLocaleCode The code (eg, `'en-US") of the previous locale which was replaced.
|
|
17333
17503
|
*/
|
|
17334
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;
|
|
17335
17513
|
/**
|
|
17336
17514
|
* Applies a locale by string name or publishes new locale configuration with
|
|
17337
17515
|
* [publishLocale](https://bryntum.com/products/grid/docs/api/Core/localization/LocaleHelper#function-publishLocale-static) and applies it.
|
|
@@ -17340,6 +17518,65 @@ export class LocaleManagerSingleton {
|
|
|
17340
17518
|
* @param {Locale,boolean} [config] Locale object. Pass `true` to reapply locale which is passed as first method parameter.
|
|
17341
17519
|
*/
|
|
17342
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;
|
|
17343
17580
|
}
|
|
17344
17581
|
export const LocaleManager : LocaleManagerSingleton
|
|
17345
17582
|
|
|
@@ -18172,7 +18409,7 @@ type StateClassConfig = {
|
|
|
18172
18409
|
* (if explicitly specified) will be used as the `stateId`.
|
|
18173
18410
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateId)
|
|
18174
18411
|
*/
|
|
18175
|
-
stateId?: string
|
|
18412
|
+
stateId?: string|null
|
|
18176
18413
|
/**
|
|
18177
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`
|
|
18178
18415
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -18221,6 +18458,12 @@ export class StateClass {
|
|
|
18221
18458
|
* Gets or sets a component's state
|
|
18222
18459
|
*/
|
|
18223
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
|
|
18224
18467
|
/**
|
|
18225
18468
|
* Fired before state is applied to the source. Allows editing the state object or preventing the operation.
|
|
18226
18469
|
* @param {object} event Event object
|
|
@@ -18256,6 +18499,11 @@ export class StateClass {
|
|
|
18256
18499
|
* @param {boolean} [reload] Pass `true` to load the state even if previously loaded.
|
|
18257
18500
|
*/
|
|
18258
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;
|
|
18259
18507
|
/**
|
|
18260
18508
|
* Saves this object's state to its [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider).
|
|
18261
18509
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/mixin/State#function-saveState)
|
|
@@ -20905,6 +21153,12 @@ type BooleanComboConfig = {
|
|
|
20905
21153
|
* Negative option value
|
|
20906
21154
|
*/
|
|
20907
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
|
|
20908
21162
|
/**
|
|
20909
21163
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
20910
21164
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -21719,7 +21973,9 @@ type ButtonConfig = {
|
|
|
21719
21973
|
*/
|
|
21720
21974
|
badge?: string
|
|
21721
21975
|
/**
|
|
21722
|
-
* 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.
|
|
21723
21979
|
*/
|
|
21724
21980
|
behaviorType?: 'button'|'submit'|'reset'
|
|
21725
21981
|
/**
|
|
@@ -21993,6 +22249,12 @@ type ButtonConfig = {
|
|
|
21993
22249
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
21994
22250
|
*/
|
|
21995
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
|
|
21996
22258
|
/**
|
|
21997
22259
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
21998
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
|
|
@@ -22170,6 +22432,11 @@ type ButtonConfig = {
|
|
|
22170
22432
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-ui)
|
|
22171
22433
|
*/
|
|
22172
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
|
|
22173
22440
|
/**
|
|
22174
22441
|
* A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
|
|
22175
22442
|
* Higher weights go further down.
|
|
@@ -22365,7 +22632,9 @@ export class Button extends Widget {
|
|
|
22365
22632
|
*/
|
|
22366
22633
|
badge: string
|
|
22367
22634
|
/**
|
|
22368
|
-
* 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.
|
|
22369
22638
|
*/
|
|
22370
22639
|
behaviorType: 'button'|'submit'|'reset'
|
|
22371
22640
|
/**
|
|
@@ -22443,6 +22712,11 @@ export class Button extends Widget {
|
|
|
22443
22712
|
* Enabled toggling of the button (stays pressed when pressed).
|
|
22444
22713
|
*/
|
|
22445
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
|
|
22446
22720
|
/**
|
|
22447
22721
|
* Fires when the default action is performed (the button is clicked)
|
|
22448
22722
|
* @param {object} event Event object
|
|
@@ -23187,6 +23461,12 @@ type ButtonGroupConfig = {
|
|
|
23187
23461
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-namedItems)
|
|
23188
23462
|
*/
|
|
23189
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
|
|
23190
23470
|
/**
|
|
23191
23471
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
23192
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
|
|
@@ -23352,6 +23632,17 @@ type ButtonGroupConfig = {
|
|
|
23352
23632
|
* button elements)
|
|
23353
23633
|
*/
|
|
23354
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
|
|
23355
23646
|
/**
|
|
23356
23647
|
* A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
|
|
23357
23648
|
* Higher weights go further down.
|
|
@@ -23545,6 +23836,12 @@ export class ButtonGroup extends Container {
|
|
|
23545
23836
|
* or all buttons to be untoggled.
|
|
23546
23837
|
*/
|
|
23547
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[]
|
|
23548
23845
|
/**
|
|
23549
23846
|
* Fires when the default action is performed on a button in the group (the button is clicked)
|
|
23550
23847
|
* @param {object} event Event object
|
|
@@ -24507,6 +24804,12 @@ type CalendarPanelConfig = {
|
|
|
24507
24804
|
* The class name to add to calendar cells which are in the previous or next month.
|
|
24508
24805
|
*/
|
|
24509
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
|
|
24510
24813
|
/**
|
|
24511
24814
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
24512
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
|
|
@@ -24619,7 +24922,7 @@ type CalendarPanelConfig = {
|
|
|
24619
24922
|
* (if explicitly specified) will be used as the `stateId`.
|
|
24620
24923
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-stateId)
|
|
24621
24924
|
*/
|
|
24622
|
-
stateId?: string
|
|
24925
|
+
stateId?: string|null
|
|
24623
24926
|
/**
|
|
24624
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`
|
|
24625
24928
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -25881,6 +26184,12 @@ type CarouselConfig = {
|
|
|
25881
26184
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-namedItems)
|
|
25882
26185
|
*/
|
|
25883
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
|
|
25884
26193
|
/**
|
|
25885
26194
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
25886
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
|
|
@@ -26019,7 +26328,7 @@ type CarouselConfig = {
|
|
|
26019
26328
|
* (if explicitly specified) will be used as the `stateId`.
|
|
26020
26329
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-stateId)
|
|
26021
26330
|
*/
|
|
26022
|
-
stateId?: string
|
|
26331
|
+
stateId?: string|null
|
|
26023
26332
|
/**
|
|
26024
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`
|
|
26025
26334
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -27229,6 +27538,12 @@ type CheckboxConfig = {
|
|
|
27229
27538
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-name)
|
|
27230
27539
|
*/
|
|
27231
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
|
|
27232
27547
|
/**
|
|
27233
27548
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
27234
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
|
|
@@ -28499,6 +28814,12 @@ type CheckboxGroupConfig = {
|
|
|
28499
28814
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-options)
|
|
28500
28815
|
*/
|
|
28501
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
|
|
28502
28823
|
/**
|
|
28503
28824
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
28504
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
|
|
@@ -28605,7 +28926,7 @@ type CheckboxGroupConfig = {
|
|
|
28605
28926
|
* (if explicitly specified) will be used as the `stateId`.
|
|
28606
28927
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-stateId)
|
|
28607
28928
|
*/
|
|
28608
|
-
stateId?: string
|
|
28929
|
+
stateId?: string|null
|
|
28609
28930
|
/**
|
|
28610
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`
|
|
28611
28932
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -29685,6 +30006,12 @@ type ChipViewConfig = {
|
|
|
29685
30006
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
29686
30007
|
*/
|
|
29687
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
|
|
29688
30015
|
/**
|
|
29689
30016
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
29690
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
|
|
@@ -30804,6 +31131,12 @@ type CodeEditorConfig = {
|
|
|
30804
31131
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-namedItems)
|
|
30805
31132
|
*/
|
|
30806
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
|
|
30807
31140
|
/**
|
|
30808
31141
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
30809
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
|
|
@@ -30903,7 +31236,7 @@ type CodeEditorConfig = {
|
|
|
30903
31236
|
* (if explicitly specified) will be used as the `stateId`.
|
|
30904
31237
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-stateId)
|
|
30905
31238
|
*/
|
|
30906
|
-
stateId?: string
|
|
31239
|
+
stateId?: string|null
|
|
30907
31240
|
/**
|
|
30908
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`
|
|
30909
31242
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -32041,6 +32374,12 @@ type ColorFieldConfig = {
|
|
|
32041
32374
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-name)
|
|
32042
32375
|
*/
|
|
32043
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
|
|
32044
32383
|
/**
|
|
32045
32384
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
32046
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
|
|
@@ -33138,6 +33477,12 @@ type ColorPickerConfig = {
|
|
|
33138
33477
|
* Configure as `true` to allow multi select and add checkboxes to the items
|
|
33139
33478
|
*/
|
|
33140
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
|
|
33141
33486
|
/**
|
|
33142
33487
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
33143
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
|
|
@@ -34423,6 +34768,12 @@ type ComboConfig = {
|
|
|
34423
34768
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-name)
|
|
34424
34769
|
*/
|
|
34425
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
|
|
34426
34777
|
/**
|
|
34427
34778
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
34428
34779
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -35637,6 +35988,12 @@ type ConfirmationBarConfig = {
|
|
|
35637
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.
|
|
35638
35989
|
*/
|
|
35639
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
|
|
35640
35997
|
/**
|
|
35641
35998
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
35642
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
|
|
@@ -36677,6 +37034,12 @@ type ContainerConfig = {
|
|
|
36677
37034
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-namedItems)
|
|
36678
37035
|
*/
|
|
36679
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
|
|
36680
37043
|
/**
|
|
36681
37044
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
36682
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
|
|
@@ -37926,6 +38289,12 @@ type DateFieldConfig = {
|
|
|
37926
38289
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-name)
|
|
37927
38290
|
*/
|
|
37928
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
|
|
37929
38298
|
/**
|
|
37930
38299
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
37931
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
|
|
@@ -39388,6 +39757,12 @@ type DatePickerConfig = {
|
|
|
39388
39757
|
* The class name to add to calendar cells which are in the previous or next month.
|
|
39389
39758
|
*/
|
|
39390
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
|
|
39391
39766
|
/**
|
|
39392
39767
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
39393
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
|
|
@@ -39506,7 +39881,7 @@ type DatePickerConfig = {
|
|
|
39506
39881
|
* (if explicitly specified) will be used as the `stateId`.
|
|
39507
39882
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-stateId)
|
|
39508
39883
|
*/
|
|
39509
|
-
stateId?: string
|
|
39884
|
+
stateId?: string|null
|
|
39510
39885
|
/**
|
|
39511
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`
|
|
39512
39887
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -40732,6 +41107,12 @@ type DateRangeFieldConfig = {
|
|
|
40732
41107
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-name)
|
|
40733
41108
|
*/
|
|
40734
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
|
|
40735
41116
|
/**
|
|
40736
41117
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
40737
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
|
|
@@ -42029,6 +42410,12 @@ type DateRangePickerConfig = {
|
|
|
42029
42410
|
* Set to `false` to hide the next and previous month buttons.
|
|
42030
42411
|
*/
|
|
42031
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
|
|
42032
42419
|
/**
|
|
42033
42420
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
42034
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
|
|
@@ -42167,7 +42554,7 @@ type DateRangePickerConfig = {
|
|
|
42167
42554
|
* (if explicitly specified) will be used as the `stateId`.
|
|
42168
42555
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-stateId)
|
|
42169
42556
|
*/
|
|
42170
|
-
stateId?: string
|
|
42557
|
+
stateId?: string|null
|
|
42171
42558
|
/**
|
|
42172
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`
|
|
42173
42560
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -43279,6 +43666,12 @@ type DateTimeFieldConfig = {
|
|
|
43279
43666
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-name)
|
|
43280
43667
|
*/
|
|
43281
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
|
|
43282
43675
|
/**
|
|
43283
43676
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
43284
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
|
|
@@ -44425,6 +44818,12 @@ type DemoCodeEditorConfig = {
|
|
|
44425
44818
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-namedItems)
|
|
44426
44819
|
*/
|
|
44427
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
|
|
44428
44827
|
/**
|
|
44429
44828
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
44430
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
|
|
@@ -44529,7 +44928,7 @@ type DemoCodeEditorConfig = {
|
|
|
44529
44928
|
* (if explicitly specified) will be used as the `stateId`.
|
|
44530
44929
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-stateId)
|
|
44531
44930
|
*/
|
|
44532
|
-
stateId?: string
|
|
44931
|
+
stateId?: string|null
|
|
44533
44932
|
/**
|
|
44534
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`
|
|
44535
44934
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -45501,6 +45900,12 @@ type DemoHeaderConfig = {
|
|
|
45501
45900
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-namedItems)
|
|
45502
45901
|
*/
|
|
45503
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
|
|
45504
45909
|
/**
|
|
45505
45910
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
45506
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
|
|
@@ -46574,6 +46979,12 @@ type DisplayFieldConfig = {
|
|
|
46574
46979
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-name)
|
|
46575
46980
|
*/
|
|
46576
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
|
|
46577
46988
|
/**
|
|
46578
46989
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
46579
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
|
|
@@ -47730,6 +48141,12 @@ type DurationFieldConfig = {
|
|
|
47730
48141
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-name)
|
|
47731
48142
|
*/
|
|
47732
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
|
|
47733
48150
|
/**
|
|
47734
48151
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
47735
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
|
|
@@ -49015,6 +49432,12 @@ type EditorConfig = {
|
|
|
49015
49432
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-namedItems)
|
|
49016
49433
|
*/
|
|
49017
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
|
|
49018
49441
|
/**
|
|
49019
49442
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
49020
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
|
|
@@ -50267,6 +50690,12 @@ type FieldConfig = {
|
|
|
50267
50690
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-name)
|
|
50268
50691
|
*/
|
|
50269
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
|
|
50270
50699
|
/**
|
|
50271
50700
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
50272
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
|
|
@@ -51451,6 +51880,12 @@ type FieldContainerConfig = {
|
|
|
51451
51880
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-namedItems)
|
|
51452
51881
|
*/
|
|
51453
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
|
|
51454
51889
|
/**
|
|
51455
51890
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
51456
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
|
|
@@ -52461,6 +52896,12 @@ type FieldFilterPickerConfig = {
|
|
|
52461
52896
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators)
|
|
52462
52897
|
*/
|
|
52463
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
|
|
52464
52905
|
/**
|
|
52465
52906
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
52466
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
|
|
@@ -53558,6 +53999,12 @@ type FieldFilterPickerGroupConfig = {
|
|
|
53558
53999
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
53559
54000
|
*/
|
|
53560
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
|
|
53561
54008
|
/**
|
|
53562
54009
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
53563
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
|
|
@@ -54723,6 +55170,12 @@ type FieldSetConfig = {
|
|
|
54723
55170
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-namedItems)
|
|
54724
55171
|
*/
|
|
54725
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
|
|
54726
55179
|
/**
|
|
54727
55180
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
54728
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
|
|
@@ -54823,7 +55276,7 @@ type FieldSetConfig = {
|
|
|
54823
55276
|
* (if explicitly specified) will be used as the `stateId`.
|
|
54824
55277
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-stateId)
|
|
54825
55278
|
*/
|
|
54826
|
-
stateId?: string
|
|
55279
|
+
stateId?: string|null
|
|
54827
55280
|
/**
|
|
54828
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`
|
|
54829
55282
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -55923,6 +56376,12 @@ type FileFieldConfig = {
|
|
|
55923
56376
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-name)
|
|
55924
56377
|
*/
|
|
55925
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
|
|
55926
56385
|
/**
|
|
55927
56386
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
55928
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
|
|
@@ -56961,6 +57420,12 @@ type FilePickerConfig = {
|
|
|
56961
57420
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-namedItems)
|
|
56962
57421
|
*/
|
|
56963
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
|
|
56964
57429
|
/**
|
|
56965
57430
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
56966
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
|
|
@@ -58105,6 +58570,12 @@ type FilterFieldConfig = {
|
|
|
58105
58570
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-name)
|
|
58106
58571
|
*/
|
|
58107
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
|
|
58108
58579
|
/**
|
|
58109
58580
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
58110
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
|
|
@@ -59285,6 +59756,12 @@ type HintConfig = {
|
|
|
59285
59756
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-nextAction)
|
|
59286
59757
|
*/
|
|
59287
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
|
|
59288
59765
|
/**
|
|
59289
59766
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
59290
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
|
|
@@ -59414,7 +59891,7 @@ type HintConfig = {
|
|
|
59414
59891
|
* (if explicitly specified) will be used as the `stateId`.
|
|
59415
59892
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-stateId)
|
|
59416
59893
|
*/
|
|
59417
|
-
stateId?: string
|
|
59894
|
+
stateId?: string|null
|
|
59418
59895
|
/**
|
|
59419
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`
|
|
59420
59897
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -60270,6 +60747,12 @@ type LabelConfig = {
|
|
|
60270
60747
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
60271
60748
|
*/
|
|
60272
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
|
|
60273
60756
|
/**
|
|
60274
60757
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
60275
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
|
|
@@ -61242,6 +61725,12 @@ type ListConfig = {
|
|
|
61242
61725
|
* Configure as `true` to allow multi select and add checkboxes to the items
|
|
61243
61726
|
*/
|
|
61244
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
|
|
61245
61734
|
/**
|
|
61246
61735
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
61247
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
|
|
@@ -62267,6 +62756,12 @@ type MaskConfig = {
|
|
|
62267
62756
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
62268
62757
|
*/
|
|
62269
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
|
|
62270
62765
|
/**
|
|
62271
62766
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
62272
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
|
|
@@ -63454,6 +63949,12 @@ type MenuConfig = {
|
|
|
63454
63949
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-namedItems)
|
|
63455
63950
|
*/
|
|
63456
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
|
|
63457
63958
|
/**
|
|
63458
63959
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
63459
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
|
|
@@ -63570,7 +64071,7 @@ type MenuConfig = {
|
|
|
63570
64071
|
* (if explicitly specified) will be used as the `stateId`.
|
|
63571
64072
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-stateId)
|
|
63572
64073
|
*/
|
|
63573
|
-
stateId?: string
|
|
64074
|
+
stateId?: string|null
|
|
63574
64075
|
/**
|
|
63575
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`
|
|
63576
64077
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -63962,6 +64463,23 @@ export class Menu extends Popup {
|
|
|
63962
64463
|
* Could be used for callbacks typings in TypeScript application.
|
|
63963
64464
|
*/
|
|
63964
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
|
|
63965
64483
|
/**
|
|
63966
64484
|
* Fires before an object is destroyed.
|
|
63967
64485
|
* @param {object} event Event object
|
|
@@ -64103,6 +64621,23 @@ type MenuItemListeners = {
|
|
|
64103
64621
|
* The `this` object for listener methods
|
|
64104
64622
|
*/
|
|
64105
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
|
|
64106
64641
|
/**
|
|
64107
64642
|
* Fires before an object is destroyed.
|
|
64108
64643
|
* @param {object} event Event object
|
|
@@ -64557,6 +65092,12 @@ type MenuItemConfig = {
|
|
|
64557
65092
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
64558
65093
|
*/
|
|
64559
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
|
|
64560
65101
|
/**
|
|
64561
65102
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
64562
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
|
|
@@ -64715,6 +65256,23 @@ type MenuItemConfig = {
|
|
|
64715
65256
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-y)
|
|
64716
65257
|
*/
|
|
64717
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
|
|
64718
65276
|
/**
|
|
64719
65277
|
* Fires before an object is destroyed.
|
|
64720
65278
|
* @param {object} event Event object
|
|
@@ -64881,6 +65439,23 @@ export class MenuItem extends Widget {
|
|
|
64881
65439
|
* also sets `toggleable` to `true`.
|
|
64882
65440
|
*/
|
|
64883
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
|
|
64884
65459
|
/**
|
|
64885
65460
|
* Fires before an object is destroyed.
|
|
64886
65461
|
* @param {object} event Event object
|
|
@@ -66121,6 +66696,12 @@ type MonthPickerConfig = {
|
|
|
66121
66696
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-namedItems)
|
|
66122
66697
|
*/
|
|
66123
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
|
|
66124
66705
|
/**
|
|
66125
66706
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
66126
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
|
|
@@ -66221,7 +66802,7 @@ type MonthPickerConfig = {
|
|
|
66221
66802
|
* (if explicitly specified) will be used as the `stateId`.
|
|
66222
66803
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-stateId)
|
|
66223
66804
|
*/
|
|
66224
|
-
stateId?: string
|
|
66805
|
+
stateId?: string|null
|
|
66225
66806
|
/**
|
|
66226
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`
|
|
66227
66808
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -67420,6 +68001,12 @@ type MultiDatePickerConfig = {
|
|
|
67420
68001
|
* Set to `false` to hide the next and previous month buttons.
|
|
67421
68002
|
*/
|
|
67422
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
|
|
67423
68010
|
/**
|
|
67424
68011
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
67425
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
|
|
@@ -67562,7 +68149,7 @@ type MultiDatePickerConfig = {
|
|
|
67562
68149
|
* (if explicitly specified) will be used as the `stateId`.
|
|
67563
68150
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-stateId)
|
|
67564
68151
|
*/
|
|
67565
|
-
stateId?: string
|
|
68152
|
+
stateId?: string|null
|
|
67566
68153
|
/**
|
|
67567
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`
|
|
67568
68155
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -68710,6 +69297,12 @@ type NumberFieldConfig = {
|
|
|
68710
69297
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-name)
|
|
68711
69298
|
*/
|
|
68712
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
|
|
68713
69306
|
/**
|
|
68714
69307
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
68715
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
|
|
@@ -69811,6 +70404,12 @@ type PagingToolbarConfig = {
|
|
|
69811
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.
|
|
69812
70405
|
*/
|
|
69813
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
|
|
69814
70413
|
/**
|
|
69815
70414
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
69816
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
|
|
@@ -70923,6 +71522,12 @@ type PanelConfig = {
|
|
|
70923
71522
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-namedItems)
|
|
70924
71523
|
*/
|
|
70925
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
|
|
70926
71531
|
/**
|
|
70927
71532
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
70928
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
|
|
@@ -71023,7 +71628,7 @@ type PanelConfig = {
|
|
|
71023
71628
|
* (if explicitly specified) will be used as the `stateId`.
|
|
71024
71629
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-stateId)
|
|
71025
71630
|
*/
|
|
71026
|
-
stateId?: string
|
|
71631
|
+
stateId?: string|null
|
|
71027
71632
|
/**
|
|
71028
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`
|
|
71029
71634
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -71331,6 +71936,11 @@ export class Panel extends Container {
|
|
|
71331
71936
|
* This property is `true` if the panel is currently expanding.
|
|
71332
71937
|
*/
|
|
71333
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
|
|
71334
71944
|
/**
|
|
71335
71945
|
* Identifies an object as an instance of [Panel](https://bryntum.com/products/grid/docs/api/Core/widget/Panel) class, or subclass thereof.
|
|
71336
71946
|
*/
|
|
@@ -71351,6 +71961,12 @@ export class Panel extends Container {
|
|
|
71351
71961
|
* Gets or sets a component's state
|
|
71352
71962
|
*/
|
|
71353
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
|
|
71354
71970
|
/**
|
|
71355
71971
|
* Get toolbar [Toolbar](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar) docked to the top of the panel
|
|
71356
71972
|
*/
|
|
@@ -71449,6 +72065,11 @@ export class Panel extends Container {
|
|
|
71449
72065
|
* @param {boolean} [reload] Pass `true` to load the state even if previously loaded.
|
|
71450
72066
|
*/
|
|
71451
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;
|
|
71452
72073
|
/**
|
|
71453
72074
|
* Saves this object's state to its [stateProvider](https://bryntum.com/products/grid/docs/api/Core/mixin/State#config-stateProvider).
|
|
71454
72075
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#function-saveState)
|
|
@@ -72207,6 +72828,12 @@ type PasswordFieldConfig = {
|
|
|
72207
72828
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-name)
|
|
72208
72829
|
*/
|
|
72209
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
|
|
72210
72837
|
/**
|
|
72211
72838
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
72212
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
|
|
@@ -73331,6 +73958,12 @@ type PickerFieldConfig = {
|
|
|
73331
73958
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-name)
|
|
73332
73959
|
*/
|
|
73333
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
|
|
73334
73967
|
/**
|
|
73335
73968
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
73336
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
|
|
@@ -74541,6 +75174,12 @@ type PopupConfig = {
|
|
|
74541
75174
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-namedItems)
|
|
74542
75175
|
*/
|
|
74543
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
|
|
74544
75183
|
/**
|
|
74545
75184
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
74546
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
|
|
@@ -74665,7 +75304,7 @@ type PopupConfig = {
|
|
|
74665
75304
|
* (if explicitly specified) will be used as the `stateId`.
|
|
74666
75305
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-stateId)
|
|
74667
75306
|
*/
|
|
74668
|
-
stateId?: string
|
|
75307
|
+
stateId?: string|null
|
|
74669
75308
|
/**
|
|
74670
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`
|
|
74671
75310
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -75556,6 +76195,12 @@ type ProgressBarConfig = {
|
|
|
75556
76195
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
75557
76196
|
*/
|
|
75558
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
|
|
75559
76204
|
/**
|
|
75560
76205
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
75561
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
|
|
@@ -76667,6 +77312,12 @@ type RadioConfig = {
|
|
|
76667
77312
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-name)
|
|
76668
77313
|
*/
|
|
76669
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
|
|
76670
77321
|
/**
|
|
76671
77322
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
76672
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
|
|
@@ -77840,6 +78491,12 @@ type RadioGroupConfig = {
|
|
|
77840
78491
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-options)
|
|
77841
78492
|
*/
|
|
77842
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
|
|
77843
78500
|
/**
|
|
77844
78501
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
77845
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
|
|
@@ -77940,7 +78597,7 @@ type RadioGroupConfig = {
|
|
|
77940
78597
|
* (if explicitly specified) will be used as the `stateId`.
|
|
77941
78598
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-stateId)
|
|
77942
78599
|
*/
|
|
77943
|
-
stateId?: string
|
|
78600
|
+
stateId?: string|null
|
|
77944
78601
|
/**
|
|
77945
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`
|
|
77946
78603
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -79022,6 +79679,12 @@ type RichTextFieldConfig = {
|
|
|
79022
79679
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-name)
|
|
79023
79680
|
*/
|
|
79024
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
|
|
79025
79688
|
/**
|
|
79026
79689
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
79027
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
|
|
@@ -79378,7 +80041,7 @@ export abstract class RichTextField extends Field {
|
|
|
79378
80041
|
* Use this property to update this field´s value silently while the rich text contents of this field is being
|
|
79379
80042
|
* edited. Otherwise, it would reset caret position and completely overwrite the context.
|
|
79380
80043
|
*/
|
|
79381
|
-
richText:
|
|
80044
|
+
richText: string
|
|
79382
80045
|
/**
|
|
79383
80046
|
* Fires before an object is destroyed.
|
|
79384
80047
|
* @param {object} event Event object
|
|
@@ -80179,6 +80842,12 @@ type SlideToggleConfig = {
|
|
|
80179
80842
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-name)
|
|
80180
80843
|
*/
|
|
80181
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
|
|
80182
80851
|
/**
|
|
80183
80852
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
80184
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
|
|
@@ -81149,6 +81818,12 @@ type SliderConfig = {
|
|
|
81149
81818
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
81150
81819
|
*/
|
|
81151
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
|
|
81152
81827
|
/**
|
|
81153
81828
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
81154
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
|
|
@@ -82131,6 +82806,12 @@ type SplitterConfig = {
|
|
|
82131
82806
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-orientation)
|
|
82132
82807
|
*/
|
|
82133
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
|
|
82134
82815
|
/**
|
|
82135
82816
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
82136
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
|
|
@@ -82850,7 +83531,9 @@ type TabConfig = {
|
|
|
82850
83531
|
*/
|
|
82851
83532
|
badge?: string
|
|
82852
83533
|
/**
|
|
82853
|
-
* 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.
|
|
82854
83537
|
*/
|
|
82855
83538
|
behaviorType?: 'button'|'submit'|'reset'
|
|
82856
83539
|
/**
|
|
@@ -83128,6 +83811,12 @@ type TabConfig = {
|
|
|
83128
83811
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
83129
83812
|
*/
|
|
83130
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
|
|
83131
83820
|
/**
|
|
83132
83821
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
83133
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
|
|
@@ -83312,6 +84001,11 @@ type TabConfig = {
|
|
|
83312
84001
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-ui)
|
|
83313
84002
|
*/
|
|
83314
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
|
|
83315
84009
|
/**
|
|
83316
84010
|
* A widgets weight determines its position among siblings when added to a [Container](https://bryntum.com/products/grid/docs/api/Core/widget/Container).
|
|
83317
84011
|
* Higher weights go further down.
|
|
@@ -84229,6 +84923,12 @@ type TabBarConfig = {
|
|
|
84229
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.
|
|
84230
84924
|
*/
|
|
84231
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
|
|
84232
84932
|
/**
|
|
84233
84933
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
84234
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
|
|
@@ -85386,6 +86086,12 @@ type TabPanelConfig = {
|
|
|
85386
86086
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-namedItems)
|
|
85387
86087
|
*/
|
|
85388
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
|
|
85389
86095
|
/**
|
|
85390
86096
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
85391
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
|
|
@@ -85486,7 +86192,7 @@ type TabPanelConfig = {
|
|
|
85486
86192
|
* (if explicitly specified) will be used as the `stateId`.
|
|
85487
86193
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-stateId)
|
|
85488
86194
|
*/
|
|
85489
|
-
stateId?: string
|
|
86195
|
+
stateId?: string|null
|
|
85490
86196
|
/**
|
|
85491
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`
|
|
85492
86198
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -86625,6 +87331,12 @@ type TextAreaFieldConfig = {
|
|
|
86625
87331
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-name)
|
|
86626
87332
|
*/
|
|
86627
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
|
|
86628
87340
|
/**
|
|
86629
87341
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
86630
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
|
|
@@ -87764,6 +88476,12 @@ type TextAreaPickerFieldConfig = {
|
|
|
87764
88476
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-name)
|
|
87765
88477
|
*/
|
|
87766
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
|
|
87767
88485
|
/**
|
|
87768
88486
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
87769
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
|
|
@@ -88912,6 +89630,12 @@ type TextFieldConfig = {
|
|
|
88912
89630
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-name)
|
|
88913
89631
|
*/
|
|
88914
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
|
|
88915
89639
|
/**
|
|
88916
89640
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
88917
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
|
|
@@ -90080,6 +90804,12 @@ type TimeFieldConfig = {
|
|
|
90080
90804
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-name)
|
|
90081
90805
|
*/
|
|
90082
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
|
|
90083
90813
|
/**
|
|
90084
90814
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
90085
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
|
|
@@ -91191,6 +91921,12 @@ type TimePickerConfig = {
|
|
|
91191
91921
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-namedItems)
|
|
91192
91922
|
*/
|
|
91193
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
|
|
91194
91930
|
/**
|
|
91195
91931
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
91196
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
|
|
@@ -92081,6 +92817,12 @@ type ToastConfig = {
|
|
|
92081
92817
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
92082
92818
|
*/
|
|
92083
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
|
|
92084
92826
|
/**
|
|
92085
92827
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
92086
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
|
|
@@ -92960,6 +93702,12 @@ type ToolConfig = {
|
|
|
92960
93702
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
92961
93703
|
*/
|
|
92962
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
|
|
92963
93711
|
/**
|
|
92964
93712
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
92965
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
|
|
@@ -93966,6 +94714,12 @@ type ToolbarConfig = {
|
|
|
93966
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.
|
|
93967
94715
|
*/
|
|
93968
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
|
|
93969
94723
|
/**
|
|
93970
94724
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
93971
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
|
|
@@ -95274,6 +96028,12 @@ type TooltipConfig = {
|
|
|
95274
96028
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-namedItems)
|
|
95275
96029
|
*/
|
|
95276
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
|
|
95277
96037
|
/**
|
|
95278
96038
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
95279
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
|
|
@@ -95401,7 +96161,7 @@ type TooltipConfig = {
|
|
|
95401
96161
|
* (if explicitly specified) will be used as the `stateId`.
|
|
95402
96162
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-stateId)
|
|
95403
96163
|
*/
|
|
95404
|
-
stateId?: string
|
|
96164
|
+
stateId?: string|null
|
|
95405
96165
|
/**
|
|
95406
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`
|
|
95407
96167
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -96319,6 +97079,12 @@ type WidgetConfig = {
|
|
|
96319
97079
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
96320
97080
|
*/
|
|
96321
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
|
|
96322
97088
|
/**
|
|
96323
97089
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
96324
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
|
|
@@ -98072,6 +98838,12 @@ type YearPickerConfig = {
|
|
|
98072
98838
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-namedItems)
|
|
98073
98839
|
*/
|
|
98074
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
|
|
98075
98847
|
/**
|
|
98076
98848
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
98077
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
|
|
@@ -98176,7 +98948,7 @@ type YearPickerConfig = {
|
|
|
98176
98948
|
* (if explicitly specified) will be used as the `stateId`.
|
|
98177
98949
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-stateId)
|
|
98178
98950
|
*/
|
|
98179
|
-
stateId?: string
|
|
98951
|
+
stateId?: string|null
|
|
98180
98952
|
/**
|
|
98181
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`
|
|
98182
98954
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -99162,6 +99934,12 @@ type UndoRedoBaseConfig = {
|
|
|
99162
99934
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-namedItems)
|
|
99163
99935
|
*/
|
|
99164
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
|
|
99165
99943
|
/**
|
|
99166
99944
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
99167
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
|
|
@@ -100124,6 +100902,12 @@ type AISettingsPanelConfig = {
|
|
|
100124
100902
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-namedItems)
|
|
100125
100903
|
*/
|
|
100126
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
|
|
100127
100911
|
/**
|
|
100128
100912
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
100129
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
|
|
@@ -101294,6 +102078,12 @@ type ChatPanelConfig = {
|
|
|
101294
102078
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-namedItems)
|
|
101295
102079
|
*/
|
|
101296
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
|
|
101297
102087
|
/**
|
|
101298
102088
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
101299
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
|
|
@@ -101398,7 +102188,7 @@ type ChatPanelConfig = {
|
|
|
101398
102188
|
* (if explicitly specified) will be used as the `stateId`.
|
|
101399
102189
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-stateId)
|
|
101400
102190
|
*/
|
|
101401
|
-
stateId?: string
|
|
102191
|
+
stateId?: string|null
|
|
101402
102192
|
/**
|
|
101403
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`
|
|
101404
102194
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -102612,6 +103402,12 @@ type ConfirmationDialogConfig = {
|
|
|
102612
103402
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-namedItems)
|
|
102613
103403
|
*/
|
|
102614
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
|
|
102615
103411
|
/**
|
|
102616
103412
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
102617
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
|
|
@@ -103573,6 +104369,12 @@ type HistogramConfig = {
|
|
|
103573
104369
|
* to omit zero height bars.
|
|
103574
104370
|
*/
|
|
103575
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
|
|
103576
104378
|
/**
|
|
103577
104379
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
103578
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
|
|
@@ -104403,6 +105205,12 @@ type ScaleConfig = {
|
|
|
104403
105205
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
104404
105206
|
*/
|
|
104405
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
|
|
104406
105214
|
/**
|
|
104407
105215
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
104408
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
|
|
@@ -105918,10 +106726,10 @@ type ActionColumnConfig = {
|
|
|
105918
106726
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
105919
106727
|
* @param {any} renderData.groupRowFor Current group value
|
|
105920
106728
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
105921
|
-
* @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
|
|
105922
106730
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
105923
106731
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
105924
|
-
* @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
|
|
105925
106733
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
105926
106734
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
105927
106735
|
*/
|
|
@@ -106594,10 +107402,10 @@ type AggregateColumnConfig = {
|
|
|
106594
107402
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
106595
107403
|
* @param {any} renderData.groupRowFor Current group value
|
|
106596
107404
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
106597
|
-
* @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
|
|
106598
107406
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
106599
107407
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
106600
|
-
* @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
|
|
106601
107409
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
106602
107410
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
106603
107411
|
*/
|
|
@@ -107326,10 +108134,10 @@ type ChartColumnConfig = {
|
|
|
107326
108134
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
107327
108135
|
* @param {any} renderData.groupRowFor Current group value
|
|
107328
108136
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
107329
|
-
* @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
|
|
107330
108138
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
107331
108139
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
107332
|
-
* @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
|
|
107333
108141
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
107334
108142
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
107335
108143
|
*/
|
|
@@ -108063,10 +108871,10 @@ type CheckColumnConfig = {
|
|
|
108063
108871
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
108064
108872
|
* @param {any} renderData.groupRowFor Current group value
|
|
108065
108873
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
108066
|
-
* @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
|
|
108067
108875
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
108068
108876
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
108069
|
-
* @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
|
|
108070
108878
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
108071
108879
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
108072
108880
|
*/
|
|
@@ -108815,10 +109623,10 @@ type ColorColumnConfig = {
|
|
|
108815
109623
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
108816
109624
|
* @param {any} renderData.groupRowFor Current group value
|
|
108817
109625
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
108818
|
-
* @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
|
|
108819
109627
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
108820
109628
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
108821
|
-
* @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
|
|
108822
109630
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
108823
109631
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
108824
109632
|
*/
|
|
@@ -109512,10 +110320,10 @@ type ColumnConfig = {
|
|
|
109512
110320
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
109513
110321
|
* @param {any} renderData.groupRowFor Current group value
|
|
109514
110322
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
109515
|
-
* @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
|
|
109516
110324
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
109517
110325
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
109518
|
-
* @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
|
|
109519
110327
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
109520
110328
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
109521
110329
|
*/
|
|
@@ -110455,7 +111263,7 @@ export class Column extends Model {
|
|
|
110455
111263
|
* behaviour can be configured by setting [resizeToFitIncludesHeader](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-resizeToFitIncludesHeader).
|
|
110456
111264
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/column/Column#function-resizeToFitContent)
|
|
110457
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`.
|
|
110458
|
-
* @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.
|
|
110459
111267
|
*/
|
|
110460
111268
|
resizeToFitContent(widthMin: number|number[], widthMax: number): Promise<void>;
|
|
110461
111269
|
/**
|
|
@@ -110792,10 +111600,10 @@ type CurrencyColumnConfig = {
|
|
|
110792
111600
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
110793
111601
|
* @param {any} renderData.groupRowFor Current group value
|
|
110794
111602
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
110795
|
-
* @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
|
|
110796
111604
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
110797
111605
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
110798
|
-
* @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
|
|
110799
111607
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
110800
111608
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
110801
111609
|
*/
|
|
@@ -111506,10 +112314,10 @@ type DateColumnConfig = {
|
|
|
111506
112314
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
111507
112315
|
* @param {any} renderData.groupRowFor Current group value
|
|
111508
112316
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
111509
|
-
* @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
|
|
111510
112318
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
111511
112319
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
111512
|
-
* @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
|
|
111513
112321
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
111514
112322
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
111515
112323
|
*/
|
|
@@ -112230,10 +113038,10 @@ type NumberColumnConfig = {
|
|
|
112230
113038
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
112231
113039
|
* @param {any} renderData.groupRowFor Current group value
|
|
112232
113040
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
112233
|
-
* @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
|
|
112234
113042
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
112235
113043
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
112236
|
-
* @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
|
|
112237
113045
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
112238
113046
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
112239
113047
|
*/
|
|
@@ -112970,10 +113778,10 @@ type PercentColumnConfig = {
|
|
|
112970
113778
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
112971
113779
|
* @param {any} renderData.groupRowFor Current group value
|
|
112972
113780
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
112973
|
-
* @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
|
|
112974
113782
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
112975
113783
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
112976
|
-
* @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
|
|
112977
113785
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
112978
113786
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
112979
113787
|
*/
|
|
@@ -113708,10 +114516,10 @@ type RatingColumnConfig = {
|
|
|
113708
114516
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
113709
114517
|
* @param {any} renderData.groupRowFor Current group value
|
|
113710
114518
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
113711
|
-
* @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
|
|
113712
114520
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
113713
114521
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
113714
|
-
* @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
|
|
113715
114523
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
113716
114524
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
113717
114525
|
*/
|
|
@@ -114358,10 +115166,10 @@ type RowNumberColumnConfig = {
|
|
|
114358
115166
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
114359
115167
|
* @param {any} renderData.groupRowFor Current group value
|
|
114360
115168
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
114361
|
-
* @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
|
|
114362
115170
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
114363
115171
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
114364
|
-
* @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
|
|
114365
115173
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
114366
115174
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
114367
115175
|
*/
|
|
@@ -114988,10 +115796,10 @@ type SparklineColumnConfig = {
|
|
|
114988
115796
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
114989
115797
|
* @param {any} renderData.groupRowFor Current group value
|
|
114990
115798
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
114991
|
-
* @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
|
|
114992
115800
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
114993
115801
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
114994
|
-
* @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
|
|
114995
115803
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
114996
115804
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
114997
115805
|
*/
|
|
@@ -115674,10 +116482,10 @@ type TemplateColumnConfig = {
|
|
|
115674
116482
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
115675
116483
|
* @param {any} renderData.groupRowFor Current group value
|
|
115676
116484
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
115677
|
-
* @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
|
|
115678
116486
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
115679
116487
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
115680
|
-
* @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
|
|
115681
116489
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
115682
116490
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
115683
116491
|
*/
|
|
@@ -116365,10 +117173,10 @@ type TimeColumnConfig = {
|
|
|
116365
117173
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
116366
117174
|
* @param {any} renderData.groupRowFor Current group value
|
|
116367
117175
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
116368
|
-
* @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
|
|
116369
117177
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
116370
117178
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
116371
|
-
* @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
|
|
116372
117180
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
116373
117181
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
116374
117182
|
*/
|
|
@@ -117059,10 +117867,10 @@ type TreeColumnConfig = {
|
|
|
117059
117867
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
117060
117868
|
* @param {any} renderData.groupRowFor Current group value
|
|
117061
117869
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
117062
|
-
* @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
|
|
117063
117871
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
117064
117872
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
117065
|
-
* @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
|
|
117066
117874
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
117067
117875
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
117068
117876
|
*/
|
|
@@ -117779,10 +118587,10 @@ type WidgetColumnConfig = {
|
|
|
117779
118587
|
* @param {HTMLElement} renderData.cellElement Cell element, for adding CSS classes, styling etc.
|
|
117780
118588
|
* @param {any} renderData.groupRowFor Current group value
|
|
117781
118589
|
* @param {Core.data.Model} renderData.record Record for the row
|
|
117782
|
-
* @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
|
|
117783
118591
|
* @param {Grid.column.Column} renderData.column Current rendering column
|
|
117784
118592
|
* @param {Grid.column.Column} renderData.groupColumn Column that the grid is grouped by
|
|
117785
|
-
* @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
|
|
117786
118594
|
* @param {Grid.view.Grid} renderData.grid This grid
|
|
117787
118595
|
* @returns {DomConfig,string,void} The header grouping text or DomConfig object representing the HTML markup
|
|
117788
118596
|
*/
|
|
@@ -121644,6 +122452,12 @@ type CellTooltipConfig = {
|
|
|
121644
122452
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-namedItems)
|
|
121645
122453
|
*/
|
|
121646
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
|
|
121647
122461
|
/**
|
|
121648
122462
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
121649
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
|
|
@@ -121771,7 +122585,7 @@ type CellTooltipConfig = {
|
|
|
121771
122585
|
* (if explicitly specified) will be used as the `stateId`.
|
|
121772
122586
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-stateId)
|
|
121773
122587
|
*/
|
|
121774
|
-
stateId?: string
|
|
122588
|
+
stateId?: string|null
|
|
121775
122589
|
/**
|
|
121776
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`
|
|
121777
122591
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -122340,6 +123154,7 @@ type ColumnAutoWidthConfig = {
|
|
|
122340
123154
|
* The default `autoWidth` option for columns with `autoWidth: true`. This can
|
|
122341
123155
|
* be a single number for the minimum column width, or an array of two numbers
|
|
122342
123156
|
* for the `[minWidth, maxWidth]`.
|
|
123157
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnAutoWidth#config-default)
|
|
122343
123158
|
*/
|
|
122344
123159
|
default?: number|number[]
|
|
122345
123160
|
/**
|
|
@@ -123483,6 +124298,12 @@ type ColumnResizeConfig = {
|
|
|
123483
124298
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize#config-localizableProperties)
|
|
123484
124299
|
*/
|
|
123485
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
|
|
123486
124307
|
/**
|
|
123487
124308
|
* Fires before an object is destroyed.
|
|
123488
124309
|
* @param {object} event Event object
|
|
@@ -123532,6 +124353,11 @@ export class ColumnResize extends InstancePlugin {
|
|
|
123532
124353
|
* Identifies an object as an instance of [ColumnResize](https://bryntum.com/products/grid/docs/api/Grid/feature/ColumnResize) class, or subclass thereof.
|
|
123533
124354
|
*/
|
|
123534
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
|
|
123535
124361
|
/**
|
|
123536
124362
|
* Fires before an object is destroyed.
|
|
123537
124363
|
* @param {object} event Event object
|
|
@@ -123557,6 +124383,12 @@ export class ColumnResize extends InstancePlugin {
|
|
|
123557
124383
|
* @param {PdfExportConfig} [config]
|
|
123558
124384
|
*/
|
|
123559
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;
|
|
123560
124392
|
}
|
|
123561
124393
|
|
|
123562
124394
|
/**
|
|
@@ -124600,7 +125432,8 @@ type GroupConfig = {
|
|
|
124600
125432
|
* @param {object} context Renderer context data
|
|
124601
125433
|
* @param {any} context.groupRowFor The value of the `field` for the group. Type depends on `field` used for grouping
|
|
124602
125434
|
* @param {Core.data.Model} context.record The group record representing the group
|
|
124603
|
-
* @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
|
|
124604
125437
|
* @param {Grid.column.Column} context.column The column the renderer runs for
|
|
124605
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
|
|
124606
125439
|
* @param {Grid.column.Column} context.groupColumn The column under which the `field` is shown
|
|
@@ -124610,7 +125443,7 @@ type GroupConfig = {
|
|
|
124610
125443
|
* @param {HTMLElement} context.rowElement The owning row element
|
|
124611
125444
|
* @returns {DomConfig,string,void}
|
|
124612
125445
|
*/
|
|
124613
|
-
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
|
|
124614
125447
|
/**
|
|
124615
125448
|
* Set to `true` to show the number of members of each group in the group header. Not applicable when using
|
|
124616
125449
|
* Scheduler in vertical mode.
|
|
@@ -127544,6 +128377,7 @@ type RowReorderConfig = {
|
|
|
127544
128377
|
/**
|
|
127545
128378
|
* Set to `true` to preserve sorters after a drop operation, if that operation leads to the store still being
|
|
127546
128379
|
* sorted.
|
|
128380
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/RowReorder#config-preserveSorters)
|
|
127547
128381
|
*/
|
|
127548
128382
|
preserveSorters?: boolean
|
|
127549
128383
|
/**
|
|
@@ -129813,9 +130647,9 @@ export class TreeGroup extends InstancePlugin {
|
|
|
129813
130647
|
/**
|
|
129814
130648
|
* Transforms the data according to the supplied levels.
|
|
129815
130649
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/TreeGroup#function-group)
|
|
129816
|
-
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree
|
|
129817
|
-
* @param {Core.data.Model} levels.record record
|
|
129818
|
-
* @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.
|
|
129819
130653
|
*/
|
|
129820
130654
|
group(levels: (string|Column|((record: Model) => string))[]): Promise<void>;
|
|
129821
130655
|
}
|
|
@@ -131487,6 +132321,10 @@ export class PdfExport extends InstancePlugin {
|
|
|
131487
132321
|
* rows with an additional buffer.
|
|
131488
132322
|
*/
|
|
131489
132323
|
rowReadyCondition: () => void
|
|
132324
|
+
/**
|
|
132325
|
+
* Set to `true` to receive binary file from the server instead of download link.
|
|
132326
|
+
*/
|
|
132327
|
+
sendAsBinary: boolean
|
|
131490
132328
|
/**
|
|
131491
132329
|
* Determines whether to stream exported pages directly to the export server using WebSocket connection to
|
|
131492
132330
|
* offload client application.
|
|
@@ -136094,6 +136932,12 @@ type GridConfig = {
|
|
|
136094
136932
|
* Grid monitors window resize by default.
|
|
136095
136933
|
*/
|
|
136096
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
|
|
136097
136941
|
/**
|
|
136098
136942
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
136099
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
|
|
@@ -136245,7 +137089,7 @@ type GridConfig = {
|
|
|
136245
137089
|
* (if explicitly specified) will be used as the `stateId`.
|
|
136246
137090
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-stateId)
|
|
136247
137091
|
*/
|
|
136248
|
-
stateId?: string
|
|
137092
|
+
stateId?: string|null
|
|
136249
137093
|
/**
|
|
136250
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`
|
|
136251
137095
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -140155,6 +140999,12 @@ type GridBaseConfig = {
|
|
|
140155
140999
|
* Grid monitors window resize by default.
|
|
140156
141000
|
*/
|
|
140157
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
|
|
140158
141008
|
/**
|
|
140159
141009
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
140160
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
|
|
@@ -140306,7 +141156,7 @@ type GridBaseConfig = {
|
|
|
140306
141156
|
* (if explicitly specified) will be used as the `stateId`.
|
|
140307
141157
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-stateId)
|
|
140308
141158
|
*/
|
|
140309
|
-
stateId?: string
|
|
141159
|
+
stateId?: string|null
|
|
140310
141160
|
/**
|
|
140311
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`
|
|
140312
141162
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -141734,6 +142584,12 @@ export class GridBase extends Panel {
|
|
|
141734
142584
|
* Gets or sets grid's state. Check out [GridState](https://bryntum.com/products/grid/docs/api/Grid/view/mixin/GridState) mixin for details.
|
|
141735
142585
|
*/
|
|
141736
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
|
|
141737
142593
|
/**
|
|
141738
142594
|
* The properties of this settings object controls how grid is restored from state data.
|
|
141739
142595
|
*/
|
|
@@ -142854,9 +143710,9 @@ export class GridBase extends Panel {
|
|
|
142854
143710
|
/**
|
|
142855
143711
|
* Transforms the data according to the supplied levels.
|
|
142856
143712
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#function-group)
|
|
142857
|
-
* @param {(string|Grid.column.Column|Function)[]} levels Field names or functions use to generate parents in resulting tree
|
|
142858
|
-
* @param {Core.data.Model} levels.record record
|
|
142859
|
-
* @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.
|
|
142860
143716
|
*/
|
|
142861
143717
|
group(levels: (string|Column|((record: Model) => string))[]): Promise<void>;
|
|
142862
143718
|
/**
|
|
@@ -142999,6 +143855,11 @@ export class GridBase extends Panel {
|
|
|
142999
143855
|
* Rerenders all grid rows, completely replacing all row elements with new ones
|
|
143000
143856
|
*/
|
|
143001
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;
|
|
143002
143863
|
/**
|
|
143003
143864
|
* Restore scroll state. If state is not specified, restores the last stored state.
|
|
143004
143865
|
* @param {object} [state] Scroll state, optional
|
|
@@ -143710,6 +144571,12 @@ type SubGridConfig = {
|
|
|
143710
144571
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
143711
144572
|
*/
|
|
143712
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
|
|
143713
144580
|
/**
|
|
143714
144581
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
143715
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
|
|
@@ -146634,6 +147501,12 @@ type TreeGridConfig = {
|
|
|
146634
147501
|
* Grid monitors window resize by default.
|
|
146635
147502
|
*/
|
|
146636
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
|
|
146637
147510
|
/**
|
|
146638
147511
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
146639
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
|
|
@@ -146785,7 +147658,7 @@ type TreeGridConfig = {
|
|
|
146785
147658
|
* (if explicitly specified) will be used as the `stateId`.
|
|
146786
147659
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-stateId)
|
|
146787
147660
|
*/
|
|
146788
|
-
stateId?: string
|
|
147661
|
+
stateId?: string|null
|
|
146789
147662
|
/**
|
|
146790
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`
|
|
146791
147664
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -148993,6 +149866,12 @@ type ExportDialogConfig = {
|
|
|
148993
149866
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-namedItems)
|
|
148994
149867
|
*/
|
|
148995
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
|
|
148996
149875
|
/**
|
|
148997
149876
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
148998
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
|
|
@@ -149117,7 +149996,7 @@ type ExportDialogConfig = {
|
|
|
149117
149996
|
* (if explicitly specified) will be used as the `stateId`.
|
|
149118
149997
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-stateId)
|
|
149119
149998
|
*/
|
|
149120
|
-
stateId?: string
|
|
149999
|
+
stateId?: string|null
|
|
149121
150000
|
/**
|
|
149122
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`
|
|
149123
150002
|
* will be saved using the [default state provider](https://bryntum.com/products/grid/docs/api/Core/state/StateProvider#property-instance-static).
|
|
@@ -150951,6 +151830,12 @@ type AIFilterFieldConfig = {
|
|
|
150951
151830
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-name)
|
|
150952
151831
|
*/
|
|
150953
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
|
|
150954
151839
|
/**
|
|
150955
151840
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
150956
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
|
|
@@ -152241,6 +153126,12 @@ type ChecklistFilterComboConfig = {
|
|
|
152241
153126
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-name)
|
|
152242
153127
|
*/
|
|
152243
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
|
|
152244
153135
|
/**
|
|
152245
153136
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
152246
153137
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|
|
@@ -153218,6 +154109,12 @@ type GridChartDesignerConfig = {
|
|
|
153218
154109
|
* @property {boolean} immediate Set to `true` to receive resize notifications immediately.
|
|
153219
154110
|
*/
|
|
153220
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
|
|
153221
154118
|
/**
|
|
153222
154119
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
153223
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
|
|
@@ -154198,6 +155095,12 @@ type GridFieldFilterPickerConfig = {
|
|
|
154198
155095
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-operators)
|
|
154199
155096
|
*/
|
|
154200
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
|
|
154201
155104
|
/**
|
|
154202
155105
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
154203
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
|
|
@@ -155278,6 +156181,12 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
155278
156181
|
* [operators](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-operators).
|
|
155279
156182
|
*/
|
|
155280
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
|
|
155281
156190
|
/**
|
|
155282
156191
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
155283
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
|
|
@@ -156331,6 +157240,12 @@ type GroupBarConfig = {
|
|
|
156331
157240
|
* Configure as `true` to allow multi select and allow clicking and key navigation to select multiple chips.
|
|
156332
157241
|
*/
|
|
156333
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
|
|
156334
157249
|
/**
|
|
156335
157250
|
* The owning Widget of this Widget. If this Widget is directly contained (that is, it is one of the
|
|
156336
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
|
|
@@ -157595,6 +158510,12 @@ type TreeComboConfig = {
|
|
|
157595
158510
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-name)
|
|
157596
158511
|
*/
|
|
157597
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
|
|
157598
158519
|
/**
|
|
157599
158520
|
* This implies that the picker will display an anchor pointer, but also means that the picker will align closer
|
|
157600
158521
|
* to the input field so that the pointer pierces the [pickerAlignElement](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-pickerAlignElement)
|