@bryntum/grid-trial 7.3.1 → 7.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/grid.css +1 -1
- package/grid.d.ts +522 -5
- package/grid.module.js +40 -40
- package/grid.thin.d.ts +77 -2
- package/grid.umd.js +41 -41
- 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
|
@@ -20124,6 +20124,8 @@ type BooleanComboConfig = {
|
|
|
20124
20124
|
/**
|
|
20125
20125
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
20126
20126
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
20127
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
20128
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-appendTo)
|
|
20127
20129
|
*/
|
|
20128
20130
|
appendTo?: HTMLElement|string
|
|
20129
20131
|
/**
|
|
@@ -20486,10 +20488,14 @@ type BooleanComboConfig = {
|
|
|
20486
20488
|
inputWidth?: string|number
|
|
20487
20489
|
/**
|
|
20488
20490
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
20491
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
20492
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-insertBefore)
|
|
20489
20493
|
*/
|
|
20490
20494
|
insertBefore?: HTMLElement|string
|
|
20491
20495
|
/**
|
|
20492
20496
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
20497
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
20498
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/BooleanCombo#config-insertFirst)
|
|
20493
20499
|
*/
|
|
20494
20500
|
insertFirst?: HTMLElement|string
|
|
20495
20501
|
/**
|
|
@@ -21457,6 +21463,8 @@ type ButtonConfig = {
|
|
|
21457
21463
|
/**
|
|
21458
21464
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
21459
21465
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
21466
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
21467
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-appendTo)
|
|
21460
21468
|
*/
|
|
21461
21469
|
appendTo?: HTMLElement|string
|
|
21462
21470
|
/**
|
|
@@ -21648,10 +21656,14 @@ type ButtonConfig = {
|
|
|
21648
21656
|
ignoreParentReadOnly?: boolean
|
|
21649
21657
|
/**
|
|
21650
21658
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
21659
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
21660
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-insertBefore)
|
|
21651
21661
|
*/
|
|
21652
21662
|
insertBefore?: HTMLElement|string
|
|
21653
21663
|
/**
|
|
21654
21664
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
21665
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
21666
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Button#config-insertFirst)
|
|
21655
21667
|
*/
|
|
21656
21668
|
insertFirst?: HTMLElement|string
|
|
21657
21669
|
/**
|
|
@@ -22606,6 +22618,8 @@ type ButtonGroupConfig = {
|
|
|
22606
22618
|
/**
|
|
22607
22619
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
22608
22620
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
22621
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
22622
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-appendTo)
|
|
22609
22623
|
*/
|
|
22610
22624
|
appendTo?: HTMLElement|string
|
|
22611
22625
|
/**
|
|
@@ -22805,10 +22819,14 @@ type ButtonGroupConfig = {
|
|
|
22805
22819
|
inputFieldAlign?: 'start'|'end'
|
|
22806
22820
|
/**
|
|
22807
22821
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
22822
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
22823
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-insertBefore)
|
|
22808
22824
|
*/
|
|
22809
22825
|
insertBefore?: HTMLElement|string
|
|
22810
22826
|
/**
|
|
22811
22827
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
22828
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
22829
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ButtonGroup#config-insertFirst)
|
|
22812
22830
|
*/
|
|
22813
22831
|
insertFirst?: HTMLElement|string
|
|
22814
22832
|
/**
|
|
@@ -23770,6 +23788,8 @@ type CalendarPanelConfig = {
|
|
|
23770
23788
|
/**
|
|
23771
23789
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
23772
23790
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
23791
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
23792
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-appendTo)
|
|
23773
23793
|
*/
|
|
23774
23794
|
appendTo?: HTMLElement|string
|
|
23775
23795
|
/**
|
|
@@ -24088,10 +24108,14 @@ type CalendarPanelConfig = {
|
|
|
24088
24108
|
inputFieldAlign?: 'start'|'end'
|
|
24089
24109
|
/**
|
|
24090
24110
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
24111
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
24112
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-insertBefore)
|
|
24091
24113
|
*/
|
|
24092
24114
|
insertBefore?: HTMLElement|string
|
|
24093
24115
|
/**
|
|
24094
24116
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
24117
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
24118
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CalendarPanel#config-insertFirst)
|
|
24095
24119
|
*/
|
|
24096
24120
|
insertFirst?: HTMLElement|string
|
|
24097
24121
|
/**
|
|
@@ -25196,6 +25220,8 @@ type CarouselConfig = {
|
|
|
25196
25220
|
/**
|
|
25197
25221
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
25198
25222
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
25223
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
25224
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-appendTo)
|
|
25199
25225
|
*/
|
|
25200
25226
|
appendTo?: HTMLElement|string
|
|
25201
25227
|
/**
|
|
@@ -25483,10 +25509,14 @@ type CarouselConfig = {
|
|
|
25483
25509
|
inputFieldAlign?: 'start'|'end'
|
|
25484
25510
|
/**
|
|
25485
25511
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
25512
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
25513
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-insertBefore)
|
|
25486
25514
|
*/
|
|
25487
25515
|
insertBefore?: HTMLElement|string
|
|
25488
25516
|
/**
|
|
25489
25517
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
25518
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
25519
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Carousel#config-insertFirst)
|
|
25490
25520
|
*/
|
|
25491
25521
|
insertFirst?: HTMLElement|string
|
|
25492
25522
|
/**
|
|
@@ -26567,6 +26597,8 @@ type CheckboxConfig = {
|
|
|
26567
26597
|
/**
|
|
26568
26598
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
26569
26599
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
26600
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
26601
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-appendTo)
|
|
26570
26602
|
*/
|
|
26571
26603
|
appendTo?: HTMLElement|string
|
|
26572
26604
|
/**
|
|
@@ -26828,10 +26860,14 @@ type CheckboxConfig = {
|
|
|
26828
26860
|
inputWidth?: string|number
|
|
26829
26861
|
/**
|
|
26830
26862
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
26863
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
26864
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-insertBefore)
|
|
26831
26865
|
*/
|
|
26832
26866
|
insertBefore?: HTMLElement|string
|
|
26833
26867
|
/**
|
|
26834
26868
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
26869
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
26870
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Checkbox#config-insertFirst)
|
|
26835
26871
|
*/
|
|
26836
26872
|
insertFirst?: HTMLElement|string
|
|
26837
26873
|
/**
|
|
@@ -27797,6 +27833,8 @@ type CheckboxGroupConfig = {
|
|
|
27797
27833
|
/**
|
|
27798
27834
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
27799
27835
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
27836
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
27837
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-appendTo)
|
|
27800
27838
|
*/
|
|
27801
27839
|
appendTo?: HTMLElement|string
|
|
27802
27840
|
/**
|
|
@@ -28058,10 +28096,14 @@ type CheckboxGroupConfig = {
|
|
|
28058
28096
|
inputFieldAlign?: 'start'|'end'
|
|
28059
28097
|
/**
|
|
28060
28098
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
28099
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
28100
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-insertBefore)
|
|
28061
28101
|
*/
|
|
28062
28102
|
insertBefore?: HTMLElement|string
|
|
28063
28103
|
/**
|
|
28064
28104
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
28105
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
28106
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CheckboxGroup#config-insertFirst)
|
|
28065
28107
|
*/
|
|
28066
28108
|
insertFirst?: HTMLElement|string
|
|
28067
28109
|
/**
|
|
@@ -29058,6 +29100,8 @@ type ChipViewConfig = {
|
|
|
29058
29100
|
/**
|
|
29059
29101
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
29060
29102
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
29103
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
29104
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-appendTo)
|
|
29061
29105
|
*/
|
|
29062
29106
|
appendTo?: HTMLElement|string
|
|
29063
29107
|
/**
|
|
@@ -29107,9 +29151,11 @@ type ChipViewConfig = {
|
|
|
29107
29151
|
/**
|
|
29108
29152
|
* If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
|
|
29109
29153
|
* action means. If not provided, the record representing the chip is removed from the store.
|
|
29154
|
+
* @param {Core.data.Model[]} records Records to be closed
|
|
29155
|
+
* @param {object} options Close options
|
|
29110
29156
|
* @returns {void}
|
|
29111
29157
|
*/
|
|
29112
|
-
closeHandler?: string|(() => void)
|
|
29158
|
+
closeHandler?: string|((records: Model[], options: object) => void)
|
|
29113
29159
|
/**
|
|
29114
29160
|
* Custom CSS classes to add to element.
|
|
29115
29161
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -29284,10 +29330,14 @@ type ChipViewConfig = {
|
|
|
29284
29330
|
ignoreParentReadOnly?: boolean
|
|
29285
29331
|
/**
|
|
29286
29332
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
29333
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
29334
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-insertBefore)
|
|
29287
29335
|
*/
|
|
29288
29336
|
insertBefore?: HTMLElement|string
|
|
29289
29337
|
/**
|
|
29290
29338
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
29339
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
29340
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-insertFirst)
|
|
29291
29341
|
*/
|
|
29292
29342
|
insertFirst?: HTMLElement|string
|
|
29293
29343
|
/**
|
|
@@ -30108,6 +30158,8 @@ type CodeEditorConfig = {
|
|
|
30108
30158
|
/**
|
|
30109
30159
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30110
30160
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
30161
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30162
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-appendTo)
|
|
30111
30163
|
*/
|
|
30112
30164
|
appendTo?: HTMLElement|string
|
|
30113
30165
|
/**
|
|
@@ -30372,10 +30424,14 @@ type CodeEditorConfig = {
|
|
|
30372
30424
|
inputFieldAlign?: 'start'|'end'
|
|
30373
30425
|
/**
|
|
30374
30426
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
30427
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30428
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-insertBefore)
|
|
30375
30429
|
*/
|
|
30376
30430
|
insertBefore?: HTMLElement|string
|
|
30377
30431
|
/**
|
|
30378
30432
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
30433
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30434
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/CodeEditor#config-insertFirst)
|
|
30379
30435
|
*/
|
|
30380
30436
|
insertFirst?: HTMLElement|string
|
|
30381
30437
|
/**
|
|
@@ -31344,6 +31400,8 @@ type ColorFieldConfig = {
|
|
|
31344
31400
|
/**
|
|
31345
31401
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
31346
31402
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
31403
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
31404
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-appendTo)
|
|
31347
31405
|
*/
|
|
31348
31406
|
appendTo?: HTMLElement|string
|
|
31349
31407
|
/**
|
|
@@ -31601,10 +31659,14 @@ type ColorFieldConfig = {
|
|
|
31601
31659
|
inputWidth?: string|number
|
|
31602
31660
|
/**
|
|
31603
31661
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
31662
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
31663
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-insertBefore)
|
|
31604
31664
|
*/
|
|
31605
31665
|
insertBefore?: HTMLElement|string
|
|
31606
31666
|
/**
|
|
31607
31667
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
31668
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
31669
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorField#config-insertFirst)
|
|
31608
31670
|
*/
|
|
31609
31671
|
insertFirst?: HTMLElement|string
|
|
31610
31672
|
/**
|
|
@@ -32489,6 +32551,8 @@ type ColorPickerConfig = {
|
|
|
32489
32551
|
/**
|
|
32490
32552
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
32491
32553
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
32554
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32555
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-appendTo)
|
|
32492
32556
|
*/
|
|
32493
32557
|
appendTo?: HTMLElement|string
|
|
32494
32558
|
/**
|
|
@@ -32715,10 +32779,14 @@ type ColorPickerConfig = {
|
|
|
32715
32779
|
ignoreParentReadOnly?: boolean
|
|
32716
32780
|
/**
|
|
32717
32781
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
32782
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32783
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-insertBefore)
|
|
32718
32784
|
*/
|
|
32719
32785
|
insertBefore?: HTMLElement|string
|
|
32720
32786
|
/**
|
|
32721
32787
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
32788
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32789
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ColorPicker#config-insertFirst)
|
|
32722
32790
|
*/
|
|
32723
32791
|
insertFirst?: HTMLElement|string
|
|
32724
32792
|
/**
|
|
@@ -33569,6 +33637,8 @@ type ComboConfig = {
|
|
|
33569
33637
|
/**
|
|
33570
33638
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
33571
33639
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
33640
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
33641
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-appendTo)
|
|
33572
33642
|
*/
|
|
33573
33643
|
appendTo?: HTMLElement|string
|
|
33574
33644
|
/**
|
|
@@ -33931,10 +34001,14 @@ type ComboConfig = {
|
|
|
33931
34001
|
inputWidth?: string|number
|
|
33932
34002
|
/**
|
|
33933
34003
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
34004
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34005
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-insertBefore)
|
|
33934
34006
|
*/
|
|
33935
34007
|
insertBefore?: HTMLElement|string
|
|
33936
34008
|
/**
|
|
33937
34009
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
34010
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34011
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Combo#config-insertFirst)
|
|
33938
34012
|
*/
|
|
33939
34013
|
insertFirst?: HTMLElement|string
|
|
33940
34014
|
/**
|
|
@@ -34967,6 +35041,8 @@ type ConfirmationBarConfig = {
|
|
|
34967
35041
|
/**
|
|
34968
35042
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
34969
35043
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
35044
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35045
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-appendTo)
|
|
34970
35046
|
*/
|
|
34971
35047
|
appendTo?: HTMLElement|string
|
|
34972
35048
|
/**
|
|
@@ -35177,10 +35253,14 @@ type ConfirmationBarConfig = {
|
|
|
35177
35253
|
inputFieldAlign?: 'start'|'end'
|
|
35178
35254
|
/**
|
|
35179
35255
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
35256
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35257
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-insertBefore)
|
|
35180
35258
|
*/
|
|
35181
35259
|
insertBefore?: HTMLElement|string
|
|
35182
35260
|
/**
|
|
35183
35261
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
35262
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35263
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ConfirmationBar#config-insertFirst)
|
|
35184
35264
|
*/
|
|
35185
35265
|
insertFirst?: HTMLElement|string
|
|
35186
35266
|
/**
|
|
@@ -36010,6 +36090,8 @@ type ContainerConfig = {
|
|
|
36010
36090
|
/**
|
|
36011
36091
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
36012
36092
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
36093
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
36094
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-appendTo)
|
|
36013
36095
|
*/
|
|
36014
36096
|
appendTo?: HTMLElement|string
|
|
36015
36097
|
/**
|
|
@@ -36212,10 +36294,14 @@ type ContainerConfig = {
|
|
|
36212
36294
|
inputFieldAlign?: 'start'|'end'
|
|
36213
36295
|
/**
|
|
36214
36296
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
36297
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
36298
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-insertBefore)
|
|
36215
36299
|
*/
|
|
36216
36300
|
insertBefore?: HTMLElement|string
|
|
36217
36301
|
/**
|
|
36218
36302
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
36303
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
36304
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Container#config-insertFirst)
|
|
36219
36305
|
*/
|
|
36220
36306
|
insertFirst?: HTMLElement|string
|
|
36221
36307
|
/**
|
|
@@ -37171,6 +37257,8 @@ type DateFieldConfig = {
|
|
|
37171
37257
|
/**
|
|
37172
37258
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
37173
37259
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
37260
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
37261
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-appendTo)
|
|
37174
37262
|
*/
|
|
37175
37263
|
appendTo?: HTMLElement|string
|
|
37176
37264
|
/**
|
|
@@ -37435,10 +37523,14 @@ type DateFieldConfig = {
|
|
|
37435
37523
|
inputWidth?: string|number
|
|
37436
37524
|
/**
|
|
37437
37525
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
37526
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
37527
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-insertBefore)
|
|
37438
37528
|
*/
|
|
37439
37529
|
insertBefore?: HTMLElement|string
|
|
37440
37530
|
/**
|
|
37441
37531
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
37532
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
37533
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateField#config-insertFirst)
|
|
37442
37534
|
*/
|
|
37443
37535
|
insertFirst?: HTMLElement|string
|
|
37444
37536
|
/**
|
|
@@ -38514,6 +38606,8 @@ type DatePickerConfig = {
|
|
|
38514
38606
|
/**
|
|
38515
38607
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
38516
38608
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
38609
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
38610
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-appendTo)
|
|
38517
38611
|
*/
|
|
38518
38612
|
appendTo?: HTMLElement|string
|
|
38519
38613
|
/**
|
|
@@ -38859,10 +38953,14 @@ type DatePickerConfig = {
|
|
|
38859
38953
|
inputFieldAlign?: 'start'|'end'
|
|
38860
38954
|
/**
|
|
38861
38955
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
38956
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
38957
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-insertBefore)
|
|
38862
38958
|
*/
|
|
38863
38959
|
insertBefore?: HTMLElement|string
|
|
38864
38960
|
/**
|
|
38865
38961
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
38962
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
38963
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DatePicker#config-insertFirst)
|
|
38866
38964
|
*/
|
|
38867
38965
|
insertFirst?: HTMLElement|string
|
|
38868
38966
|
/**
|
|
@@ -39940,6 +40038,8 @@ type DateRangeFieldConfig = {
|
|
|
39940
40038
|
/**
|
|
39941
40039
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
39942
40040
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
40041
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40042
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-appendTo)
|
|
39943
40043
|
*/
|
|
39944
40044
|
appendTo?: HTMLElement|string
|
|
39945
40045
|
/**
|
|
@@ -40226,10 +40326,14 @@ type DateRangeFieldConfig = {
|
|
|
40226
40326
|
inputWidth?: string|number
|
|
40227
40327
|
/**
|
|
40228
40328
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
40329
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40330
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-insertBefore)
|
|
40229
40331
|
*/
|
|
40230
40332
|
insertBefore?: HTMLElement|string
|
|
40231
40333
|
/**
|
|
40232
40334
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
40335
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40336
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangeField#config-insertFirst)
|
|
40233
40337
|
*/
|
|
40234
40338
|
insertFirst?: HTMLElement|string
|
|
40235
40339
|
/**
|
|
@@ -41174,6 +41278,8 @@ type DateRangePickerConfig = {
|
|
|
41174
41278
|
/**
|
|
41175
41279
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
41176
41280
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
41281
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41282
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-appendTo)
|
|
41177
41283
|
*/
|
|
41178
41284
|
appendTo?: HTMLElement|string
|
|
41179
41285
|
/**
|
|
@@ -41520,10 +41626,14 @@ type DateRangePickerConfig = {
|
|
|
41520
41626
|
inputFieldAlign?: 'start'|'end'
|
|
41521
41627
|
/**
|
|
41522
41628
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
41629
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41630
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-insertBefore)
|
|
41523
41631
|
*/
|
|
41524
41632
|
insertBefore?: HTMLElement|string
|
|
41525
41633
|
/**
|
|
41526
41634
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
41635
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41636
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateRangePicker#config-insertFirst)
|
|
41527
41637
|
*/
|
|
41528
41638
|
insertFirst?: HTMLElement|string
|
|
41529
41639
|
/**
|
|
@@ -42540,6 +42650,8 @@ type DateTimeFieldConfig = {
|
|
|
42540
42650
|
/**
|
|
42541
42651
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
42542
42652
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
42653
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42654
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-appendTo)
|
|
42543
42655
|
*/
|
|
42544
42656
|
appendTo?: HTMLElement|string
|
|
42545
42657
|
/**
|
|
@@ -42780,10 +42892,14 @@ type DateTimeFieldConfig = {
|
|
|
42780
42892
|
inputTag?: string
|
|
42781
42893
|
/**
|
|
42782
42894
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
42895
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42896
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-insertBefore)
|
|
42783
42897
|
*/
|
|
42784
42898
|
insertBefore?: HTMLElement|string
|
|
42785
42899
|
/**
|
|
42786
42900
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
42901
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42902
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DateTimeField#config-insertFirst)
|
|
42787
42903
|
*/
|
|
42788
42904
|
insertFirst?: HTMLElement|string
|
|
42789
42905
|
/**
|
|
@@ -43643,6 +43759,8 @@ type DemoCodeEditorConfig = {
|
|
|
43643
43759
|
/**
|
|
43644
43760
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
43645
43761
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
43762
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43763
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-appendTo)
|
|
43646
43764
|
*/
|
|
43647
43765
|
appendTo?: HTMLElement|string
|
|
43648
43766
|
/**
|
|
@@ -43907,10 +44025,14 @@ type DemoCodeEditorConfig = {
|
|
|
43907
44025
|
inputFieldAlign?: 'start'|'end'
|
|
43908
44026
|
/**
|
|
43909
44027
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
44028
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44029
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-insertBefore)
|
|
43910
44030
|
*/
|
|
43911
44031
|
insertBefore?: HTMLElement|string
|
|
43912
44032
|
/**
|
|
43913
44033
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
44034
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44035
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor#config-insertFirst)
|
|
43914
44036
|
*/
|
|
43915
44037
|
insertFirst?: HTMLElement|string
|
|
43916
44038
|
/**
|
|
@@ -44445,7 +44567,7 @@ export class DemoCodeEditor extends CodeEditor {
|
|
|
44445
44567
|
/**
|
|
44446
44568
|
* Returns default monaco code path
|
|
44447
44569
|
*/
|
|
44448
|
-
static monacoCodePath: string|undefined
|
|
44570
|
+
static readonly monacoCodePath: string|undefined
|
|
44449
44571
|
/**
|
|
44450
44572
|
* Identifies an object as an instance of [DemoCodeEditor](https://bryntum.com/products/grid/docs/api/Core/widget/DemoCodeEditor) class, or subclass thereof.
|
|
44451
44573
|
*/
|
|
@@ -44784,6 +44906,8 @@ type DemoHeaderConfig = {
|
|
|
44784
44906
|
/**
|
|
44785
44907
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
44786
44908
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
44909
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44910
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-appendTo)
|
|
44787
44911
|
*/
|
|
44788
44912
|
appendTo?: HTMLElement|string
|
|
44789
44913
|
/**
|
|
@@ -44986,6 +45110,8 @@ type DemoHeaderConfig = {
|
|
|
44986
45110
|
inputFieldAlign?: 'start'|'end'
|
|
44987
45111
|
/**
|
|
44988
45112
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
45113
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45114
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DemoHeader#config-insertBefore)
|
|
44989
45115
|
*/
|
|
44990
45116
|
insertBefore?: HTMLElement|string
|
|
44991
45117
|
/**
|
|
@@ -45796,6 +45922,8 @@ type DisplayFieldConfig = {
|
|
|
45796
45922
|
/**
|
|
45797
45923
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45798
45924
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
45925
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45926
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-appendTo)
|
|
45799
45927
|
*/
|
|
45800
45928
|
appendTo?: HTMLElement|string
|
|
45801
45929
|
/**
|
|
@@ -46055,10 +46183,14 @@ type DisplayFieldConfig = {
|
|
|
46055
46183
|
inputWidth?: string|number
|
|
46056
46184
|
/**
|
|
46057
46185
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
46186
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46187
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-insertBefore)
|
|
46058
46188
|
*/
|
|
46059
46189
|
insertBefore?: HTMLElement|string
|
|
46060
46190
|
/**
|
|
46061
46191
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
46192
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46193
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DisplayField#config-insertFirst)
|
|
46062
46194
|
*/
|
|
46063
46195
|
insertFirst?: HTMLElement|string
|
|
46064
46196
|
/**
|
|
@@ -46919,6 +47051,8 @@ type DurationFieldConfig = {
|
|
|
46919
47051
|
/**
|
|
46920
47052
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
46921
47053
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
47054
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47055
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-appendTo)
|
|
46922
47056
|
*/
|
|
46923
47057
|
appendTo?: HTMLElement|string
|
|
46924
47058
|
/**
|
|
@@ -47182,10 +47316,14 @@ type DurationFieldConfig = {
|
|
|
47182
47316
|
inputWidth?: string|number
|
|
47183
47317
|
/**
|
|
47184
47318
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
47319
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47320
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-insertBefore)
|
|
47185
47321
|
*/
|
|
47186
47322
|
insertBefore?: HTMLElement|string
|
|
47187
47323
|
/**
|
|
47188
47324
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
47325
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47326
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/DurationField#config-insertFirst)
|
|
47189
47327
|
*/
|
|
47190
47328
|
insertFirst?: HTMLElement|string
|
|
47191
47329
|
/**
|
|
@@ -48219,6 +48357,8 @@ type EditorConfig = {
|
|
|
48219
48357
|
/**
|
|
48220
48358
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
48221
48359
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
48360
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48361
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-appendTo)
|
|
48222
48362
|
*/
|
|
48223
48363
|
appendTo?: HTMLElement|string
|
|
48224
48364
|
/**
|
|
@@ -48460,10 +48600,14 @@ type EditorConfig = {
|
|
|
48460
48600
|
inputFieldAlign?: 'start'|'end'
|
|
48461
48601
|
/**
|
|
48462
48602
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
48603
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48604
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-insertBefore)
|
|
48463
48605
|
*/
|
|
48464
48606
|
insertBefore?: HTMLElement|string
|
|
48465
48607
|
/**
|
|
48466
48608
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
48609
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
48610
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Editor#config-insertFirst)
|
|
48467
48611
|
*/
|
|
48468
48612
|
insertFirst?: HTMLElement|string
|
|
48469
48613
|
/**
|
|
@@ -49466,6 +49610,8 @@ type FieldConfig = {
|
|
|
49466
49610
|
/**
|
|
49467
49611
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
49468
49612
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
49613
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49614
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-appendTo)
|
|
49469
49615
|
*/
|
|
49470
49616
|
appendTo?: HTMLElement|string
|
|
49471
49617
|
/**
|
|
@@ -49725,10 +49871,14 @@ type FieldConfig = {
|
|
|
49725
49871
|
inputWidth?: string|number
|
|
49726
49872
|
/**
|
|
49727
49873
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
49874
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49875
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-insertBefore)
|
|
49728
49876
|
*/
|
|
49729
49877
|
insertBefore?: HTMLElement|string
|
|
49730
49878
|
/**
|
|
49731
49879
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
49880
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49881
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Field#config-insertFirst)
|
|
49732
49882
|
*/
|
|
49733
49883
|
insertFirst?: HTMLElement|string
|
|
49734
49884
|
/**
|
|
@@ -50691,6 +50841,8 @@ type FieldContainerConfig = {
|
|
|
50691
50841
|
/**
|
|
50692
50842
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
50693
50843
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
50844
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50845
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-appendTo)
|
|
50694
50846
|
*/
|
|
50695
50847
|
appendTo?: HTMLElement|string
|
|
50696
50848
|
/**
|
|
@@ -50898,10 +51050,14 @@ type FieldContainerConfig = {
|
|
|
50898
51050
|
inputFieldAlign?: 'start'|'end'
|
|
50899
51051
|
/**
|
|
50900
51052
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
51053
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51054
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-insertBefore)
|
|
50901
51055
|
*/
|
|
50902
51056
|
insertBefore?: HTMLElement|string
|
|
50903
51057
|
/**
|
|
50904
51058
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
51059
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51060
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldContainer#config-insertFirst)
|
|
50905
51061
|
*/
|
|
50906
51062
|
insertFirst?: HTMLElement|string
|
|
50907
51063
|
/**
|
|
@@ -51665,6 +51821,8 @@ type FieldFilterPickerConfig = {
|
|
|
51665
51821
|
/**
|
|
51666
51822
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
51667
51823
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
51824
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51825
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-appendTo)
|
|
51668
51826
|
*/
|
|
51669
51827
|
appendTo?: HTMLElement|string
|
|
51670
51828
|
/**
|
|
@@ -51891,10 +52049,14 @@ type FieldFilterPickerConfig = {
|
|
|
51891
52049
|
inputFieldAlign?: 'start'|'end'
|
|
51892
52050
|
/**
|
|
51893
52051
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
52052
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52053
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-insertBefore)
|
|
51894
52054
|
*/
|
|
51895
52055
|
insertBefore?: HTMLElement|string
|
|
51896
52056
|
/**
|
|
51897
52057
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
52058
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52059
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPicker#config-insertFirst)
|
|
51898
52060
|
*/
|
|
51899
52061
|
insertFirst?: HTMLElement|string
|
|
51900
52062
|
/**
|
|
@@ -52735,6 +52897,8 @@ type FieldFilterPickerGroupConfig = {
|
|
|
52735
52897
|
/**
|
|
52736
52898
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
52737
52899
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
52900
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52901
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-appendTo)
|
|
52738
52902
|
*/
|
|
52739
52903
|
appendTo?: HTMLElement|string
|
|
52740
52904
|
/**
|
|
@@ -52979,10 +53143,14 @@ type FieldFilterPickerGroupConfig = {
|
|
|
52979
53143
|
inputFieldAlign?: 'start'|'end'
|
|
52980
53144
|
/**
|
|
52981
53145
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
53146
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
53147
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-insertBefore)
|
|
52982
53148
|
*/
|
|
52983
53149
|
insertBefore?: HTMLElement|string
|
|
52984
53150
|
/**
|
|
52985
53151
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
53152
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
53153
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldFilterPickerGroup#config-insertFirst)
|
|
52986
53154
|
*/
|
|
52987
53155
|
insertFirst?: HTMLElement|string
|
|
52988
53156
|
/**
|
|
@@ -53880,6 +54048,8 @@ type FieldSetConfig = {
|
|
|
53880
54048
|
/**
|
|
53881
54049
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
53882
54050
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
54051
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
54052
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-appendTo)
|
|
53883
54053
|
*/
|
|
53884
54054
|
appendTo?: HTMLElement|string
|
|
53885
54055
|
/**
|
|
@@ -54141,10 +54311,14 @@ type FieldSetConfig = {
|
|
|
54141
54311
|
inputFieldAlign?: 'start'|'end'
|
|
54142
54312
|
/**
|
|
54143
54313
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
54314
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
54315
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-insertBefore)
|
|
54144
54316
|
*/
|
|
54145
54317
|
insertBefore?: HTMLElement|string
|
|
54146
54318
|
/**
|
|
54147
54319
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
54320
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
54321
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FieldSet#config-insertFirst)
|
|
54148
54322
|
*/
|
|
54149
54323
|
insertFirst?: HTMLElement|string
|
|
54150
54324
|
/**
|
|
@@ -55080,6 +55254,8 @@ type FileFieldConfig = {
|
|
|
55080
55254
|
/**
|
|
55081
55255
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
55082
55256
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
55257
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
55258
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-appendTo)
|
|
55083
55259
|
*/
|
|
55084
55260
|
appendTo?: HTMLElement|string
|
|
55085
55261
|
/**
|
|
@@ -55339,10 +55515,14 @@ type FileFieldConfig = {
|
|
|
55339
55515
|
inputWidth?: string|number
|
|
55340
55516
|
/**
|
|
55341
55517
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
55518
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
55519
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-insertBefore)
|
|
55342
55520
|
*/
|
|
55343
55521
|
insertBefore?: HTMLElement|string
|
|
55344
55522
|
/**
|
|
55345
55523
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
55524
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
55525
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FileField#config-insertFirst)
|
|
55346
55526
|
*/
|
|
55347
55527
|
insertFirst?: HTMLElement|string
|
|
55348
55528
|
/**
|
|
@@ -56162,6 +56342,8 @@ type FilePickerConfig = {
|
|
|
56162
56342
|
/**
|
|
56163
56343
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
56164
56344
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
56345
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56346
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-appendTo)
|
|
56165
56347
|
*/
|
|
56166
56348
|
appendTo?: HTMLElement|string
|
|
56167
56349
|
/**
|
|
@@ -56372,10 +56554,14 @@ type FilePickerConfig = {
|
|
|
56372
56554
|
inputFieldAlign?: 'start'|'end'
|
|
56373
56555
|
/**
|
|
56374
56556
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
56557
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56558
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-insertBefore)
|
|
56375
56559
|
*/
|
|
56376
56560
|
insertBefore?: HTMLElement|string
|
|
56377
56561
|
/**
|
|
56378
56562
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
56563
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56564
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilePicker#config-insertFirst)
|
|
56379
56565
|
*/
|
|
56380
56566
|
insertFirst?: HTMLElement|string
|
|
56381
56567
|
/**
|
|
@@ -57220,6 +57406,8 @@ type FilterFieldConfig = {
|
|
|
57220
57406
|
/**
|
|
57221
57407
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
57222
57408
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
57409
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57410
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-appendTo)
|
|
57223
57411
|
*/
|
|
57224
57412
|
appendTo?: HTMLElement|string
|
|
57225
57413
|
/**
|
|
@@ -57498,10 +57686,14 @@ type FilterFieldConfig = {
|
|
|
57498
57686
|
inputWidth?: string|number
|
|
57499
57687
|
/**
|
|
57500
57688
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
57689
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57690
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-insertBefore)
|
|
57501
57691
|
*/
|
|
57502
57692
|
insertBefore?: HTMLElement|string
|
|
57503
57693
|
/**
|
|
57504
57694
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
57695
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57696
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/FilterField#config-insertFirst)
|
|
57505
57697
|
*/
|
|
57506
57698
|
insertFirst?: HTMLElement|string
|
|
57507
57699
|
/**
|
|
@@ -58386,6 +58578,8 @@ type HintConfig = {
|
|
|
58386
58578
|
/**
|
|
58387
58579
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
58388
58580
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
58581
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
58582
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-appendTo)
|
|
58389
58583
|
*/
|
|
58390
58584
|
appendTo?: HTMLElement|string
|
|
58391
58585
|
/**
|
|
@@ -58657,10 +58851,14 @@ type HintConfig = {
|
|
|
58657
58851
|
inputFieldAlign?: 'start'|'end'
|
|
58658
58852
|
/**
|
|
58659
58853
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
58854
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
58855
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-insertBefore)
|
|
58660
58856
|
*/
|
|
58661
58857
|
insertBefore?: HTMLElement|string
|
|
58662
58858
|
/**
|
|
58663
58859
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
58860
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
58861
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Hint#config-insertFirst)
|
|
58664
58862
|
*/
|
|
58665
58863
|
insertFirst?: HTMLElement|string
|
|
58666
58864
|
/**
|
|
@@ -59534,6 +59732,8 @@ type LabelConfig = {
|
|
|
59534
59732
|
/**
|
|
59535
59733
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
59536
59734
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
59735
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
59736
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-appendTo)
|
|
59537
59737
|
*/
|
|
59538
59738
|
appendTo?: HTMLElement|string
|
|
59539
59739
|
/**
|
|
@@ -59703,10 +59903,14 @@ type LabelConfig = {
|
|
|
59703
59903
|
ignoreParentReadOnly?: boolean
|
|
59704
59904
|
/**
|
|
59705
59905
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
59906
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
59907
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-insertBefore)
|
|
59706
59908
|
*/
|
|
59707
59909
|
insertBefore?: HTMLElement|string
|
|
59708
59910
|
/**
|
|
59709
59911
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
59912
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
59913
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Label#config-insertFirst)
|
|
59710
59914
|
*/
|
|
59711
59915
|
insertFirst?: HTMLElement|string
|
|
59712
59916
|
/**
|
|
@@ -60438,6 +60642,8 @@ type ListConfig = {
|
|
|
60438
60642
|
/**
|
|
60439
60643
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
60440
60644
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
60645
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60646
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-appendTo)
|
|
60441
60647
|
*/
|
|
60442
60648
|
appendTo?: HTMLElement|string
|
|
60443
60649
|
/**
|
|
@@ -60645,10 +60851,14 @@ type ListConfig = {
|
|
|
60645
60851
|
ignoreParentReadOnly?: boolean
|
|
60646
60852
|
/**
|
|
60647
60853
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
60854
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60855
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-insertBefore)
|
|
60648
60856
|
*/
|
|
60649
60857
|
insertBefore?: HTMLElement|string
|
|
60650
60858
|
/**
|
|
60651
60859
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
60860
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60861
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/List#config-insertFirst)
|
|
60652
60862
|
*/
|
|
60653
60863
|
insertFirst?: HTMLElement|string
|
|
60654
60864
|
/**
|
|
@@ -61504,6 +61714,8 @@ type MaskConfig = {
|
|
|
61504
61714
|
/**
|
|
61505
61715
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
61506
61716
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
61717
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
61718
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-appendTo)
|
|
61507
61719
|
*/
|
|
61508
61720
|
appendTo?: HTMLElement|string
|
|
61509
61721
|
/**
|
|
@@ -61682,10 +61894,14 @@ type MaskConfig = {
|
|
|
61682
61894
|
ignoreParentReadOnly?: boolean
|
|
61683
61895
|
/**
|
|
61684
61896
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
61897
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
61898
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-insertBefore)
|
|
61685
61899
|
*/
|
|
61686
61900
|
insertBefore?: HTMLElement|string
|
|
61687
61901
|
/**
|
|
61688
61902
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
61903
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
61904
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Mask#config-insertFirst)
|
|
61689
61905
|
*/
|
|
61690
61906
|
insertFirst?: HTMLElement|string
|
|
61691
61907
|
/**
|
|
@@ -62514,6 +62730,8 @@ type MenuConfig = {
|
|
|
62514
62730
|
/**
|
|
62515
62731
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
62516
62732
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
62733
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62734
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-appendTo)
|
|
62517
62735
|
*/
|
|
62518
62736
|
appendTo?: HTMLElement|string
|
|
62519
62737
|
/**
|
|
@@ -62807,10 +63025,14 @@ type MenuConfig = {
|
|
|
62807
63025
|
inputFieldAlign?: 'start'|'end'
|
|
62808
63026
|
/**
|
|
62809
63027
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
63028
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
63029
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-insertBefore)
|
|
62810
63030
|
*/
|
|
62811
63031
|
insertBefore?: HTMLElement|string
|
|
62812
63032
|
/**
|
|
62813
63033
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
63034
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
63035
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Menu#config-insertFirst)
|
|
62814
63036
|
*/
|
|
62815
63037
|
insertFirst?: HTMLElement|string
|
|
62816
63038
|
/**
|
|
@@ -63764,6 +63986,8 @@ type MenuItemConfig = {
|
|
|
63764
63986
|
/**
|
|
63765
63987
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
63766
63988
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
63989
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
63990
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-appendTo)
|
|
63767
63991
|
*/
|
|
63768
63992
|
appendTo?: HTMLElement|string
|
|
63769
63993
|
/**
|
|
@@ -63956,10 +64180,14 @@ type MenuItemConfig = {
|
|
|
63956
64180
|
ignoreParentReadOnly?: boolean
|
|
63957
64181
|
/**
|
|
63958
64182
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
64183
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
64184
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-insertBefore)
|
|
63959
64185
|
*/
|
|
63960
64186
|
insertBefore?: HTMLElement|string
|
|
63961
64187
|
/**
|
|
63962
64188
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
64189
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
64190
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MenuItem#config-insertFirst)
|
|
63963
64191
|
*/
|
|
63964
64192
|
insertFirst?: HTMLElement|string
|
|
63965
64193
|
/**
|
|
@@ -65217,6 +65445,8 @@ type MonthPickerConfig = {
|
|
|
65217
65445
|
/**
|
|
65218
65446
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
65219
65447
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
65448
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
65449
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-appendTo)
|
|
65220
65450
|
*/
|
|
65221
65451
|
appendTo?: HTMLElement|string
|
|
65222
65452
|
/**
|
|
@@ -65472,10 +65702,14 @@ type MonthPickerConfig = {
|
|
|
65472
65702
|
inputFieldAlign?: 'start'|'end'
|
|
65473
65703
|
/**
|
|
65474
65704
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
65705
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
65706
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-insertBefore)
|
|
65475
65707
|
*/
|
|
65476
65708
|
insertBefore?: HTMLElement|string
|
|
65477
65709
|
/**
|
|
65478
65710
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
65711
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
65712
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MonthPicker#config-insertFirst)
|
|
65479
65713
|
*/
|
|
65480
65714
|
insertFirst?: HTMLElement|string
|
|
65481
65715
|
/**
|
|
@@ -66427,6 +66661,8 @@ type MultiDatePickerConfig = {
|
|
|
66427
66661
|
/**
|
|
66428
66662
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
66429
66663
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
66664
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
66665
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-appendTo)
|
|
66430
66666
|
*/
|
|
66431
66667
|
appendTo?: HTMLElement|string
|
|
66432
66668
|
/**
|
|
@@ -66748,10 +66984,14 @@ type MultiDatePickerConfig = {
|
|
|
66748
66984
|
inputFieldAlign?: 'start'|'end'
|
|
66749
66985
|
/**
|
|
66750
66986
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
66987
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
66988
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-insertBefore)
|
|
66751
66989
|
*/
|
|
66752
66990
|
insertBefore?: HTMLElement|string
|
|
66753
66991
|
/**
|
|
66754
66992
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
66993
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
66994
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/MultiDatePicker#config-insertFirst)
|
|
66755
66995
|
*/
|
|
66756
66996
|
insertFirst?: HTMLElement|string
|
|
66757
66997
|
/**
|
|
@@ -67764,6 +68004,8 @@ type NumberFieldConfig = {
|
|
|
67764
68004
|
/**
|
|
67765
68005
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
67766
68006
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
68007
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
68008
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-appendTo)
|
|
67767
68009
|
*/
|
|
67768
68010
|
appendTo?: HTMLElement|string
|
|
67769
68011
|
/**
|
|
@@ -68038,10 +68280,14 @@ type NumberFieldConfig = {
|
|
|
68038
68280
|
inputWidth?: string|number
|
|
68039
68281
|
/**
|
|
68040
68282
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
68283
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
68284
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-insertBefore)
|
|
68041
68285
|
*/
|
|
68042
68286
|
insertBefore?: HTMLElement|string
|
|
68043
68287
|
/**
|
|
68044
68288
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
68289
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
68290
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/NumberField#config-insertFirst)
|
|
68045
68291
|
*/
|
|
68046
68292
|
insertFirst?: HTMLElement|string
|
|
68047
68293
|
/**
|
|
@@ -68930,6 +69176,8 @@ type PagingToolbarConfig = {
|
|
|
68930
69176
|
/**
|
|
68931
69177
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
68932
69178
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
69179
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
69180
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-appendTo)
|
|
68933
69181
|
*/
|
|
68934
69182
|
appendTo?: HTMLElement|string
|
|
68935
69183
|
/**
|
|
@@ -69136,10 +69384,14 @@ type PagingToolbarConfig = {
|
|
|
69136
69384
|
inputFieldAlign?: 'start'|'end'
|
|
69137
69385
|
/**
|
|
69138
69386
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
69387
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
69388
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-insertBefore)
|
|
69139
69389
|
*/
|
|
69140
69390
|
insertBefore?: HTMLElement|string
|
|
69141
69391
|
/**
|
|
69142
69392
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
69393
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
69394
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PagingToolbar#config-insertFirst)
|
|
69143
69395
|
*/
|
|
69144
69396
|
insertFirst?: HTMLElement|string
|
|
69145
69397
|
/**
|
|
@@ -69994,6 +70246,8 @@ type PanelConfig = {
|
|
|
69994
70246
|
/**
|
|
69995
70247
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
69996
70248
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
70249
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
70250
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-appendTo)
|
|
69997
70251
|
*/
|
|
69998
70252
|
appendTo?: HTMLElement|string
|
|
69999
70253
|
/**
|
|
@@ -70249,10 +70503,14 @@ type PanelConfig = {
|
|
|
70249
70503
|
inputFieldAlign?: 'start'|'end'
|
|
70250
70504
|
/**
|
|
70251
70505
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
70506
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
70507
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-insertBefore)
|
|
70252
70508
|
*/
|
|
70253
70509
|
insertBefore?: HTMLElement|string
|
|
70254
70510
|
/**
|
|
70255
70511
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
70512
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
70513
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#config-insertFirst)
|
|
70256
70514
|
*/
|
|
70257
70515
|
insertFirst?: HTMLElement|string
|
|
70258
70516
|
/**
|
|
@@ -71270,6 +71528,8 @@ type PasswordFieldConfig = {
|
|
|
71270
71528
|
/**
|
|
71271
71529
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
71272
71530
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
71531
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
71532
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-appendTo)
|
|
71273
71533
|
*/
|
|
71274
71534
|
appendTo?: HTMLElement|string
|
|
71275
71535
|
/**
|
|
@@ -71529,10 +71789,14 @@ type PasswordFieldConfig = {
|
|
|
71529
71789
|
inputWidth?: string|number
|
|
71530
71790
|
/**
|
|
71531
71791
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
71792
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
71793
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-insertBefore)
|
|
71532
71794
|
*/
|
|
71533
71795
|
insertBefore?: HTMLElement|string
|
|
71534
71796
|
/**
|
|
71535
71797
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
71798
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
71799
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PasswordField#config-insertFirst)
|
|
71536
71800
|
*/
|
|
71537
71801
|
insertFirst?: HTMLElement|string
|
|
71538
71802
|
/**
|
|
@@ -72377,6 +72641,8 @@ type PickerFieldConfig = {
|
|
|
72377
72641
|
/**
|
|
72378
72642
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
72379
72643
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
72644
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
72645
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-appendTo)
|
|
72380
72646
|
*/
|
|
72381
72647
|
appendTo?: HTMLElement|string
|
|
72382
72648
|
/**
|
|
@@ -72637,10 +72903,14 @@ type PickerFieldConfig = {
|
|
|
72637
72903
|
inputWidth?: string|number
|
|
72638
72904
|
/**
|
|
72639
72905
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
72906
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
72907
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-insertBefore)
|
|
72640
72908
|
*/
|
|
72641
72909
|
insertBefore?: HTMLElement|string
|
|
72642
72910
|
/**
|
|
72643
72911
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
72912
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
72913
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/PickerField#config-insertFirst)
|
|
72644
72914
|
*/
|
|
72645
72915
|
insertFirst?: HTMLElement|string
|
|
72646
72916
|
/**
|
|
@@ -73539,6 +73809,8 @@ type PopupConfig = {
|
|
|
73539
73809
|
/**
|
|
73540
73810
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
73541
73811
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
73812
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
73813
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-appendTo)
|
|
73542
73814
|
*/
|
|
73543
73815
|
appendTo?: HTMLElement|string
|
|
73544
73816
|
/**
|
|
@@ -73828,10 +74100,14 @@ type PopupConfig = {
|
|
|
73828
74100
|
inputFieldAlign?: 'start'|'end'
|
|
73829
74101
|
/**
|
|
73830
74102
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
74103
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
74104
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-insertBefore)
|
|
73831
74105
|
*/
|
|
73832
74106
|
insertBefore?: HTMLElement|string
|
|
73833
74107
|
/**
|
|
73834
74108
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
74109
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
74110
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Popup#config-insertFirst)
|
|
73835
74111
|
*/
|
|
73836
74112
|
insertFirst?: HTMLElement|string
|
|
73837
74113
|
/**
|
|
@@ -74720,6 +74996,8 @@ type ProgressBarConfig = {
|
|
|
74720
74996
|
/**
|
|
74721
74997
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
74722
74998
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
74999
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75000
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-appendTo)
|
|
74723
75001
|
*/
|
|
74724
75002
|
appendTo?: HTMLElement|string
|
|
74725
75003
|
/**
|
|
@@ -74887,10 +75165,14 @@ type ProgressBarConfig = {
|
|
|
74887
75165
|
ignoreParentReadOnly?: boolean
|
|
74888
75166
|
/**
|
|
74889
75167
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
75168
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75169
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-insertBefore)
|
|
74890
75170
|
*/
|
|
74891
75171
|
insertBefore?: HTMLElement|string
|
|
74892
75172
|
/**
|
|
74893
75173
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
75174
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75175
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/ProgressBar#config-insertFirst)
|
|
74894
75176
|
*/
|
|
74895
75177
|
insertFirst?: HTMLElement|string
|
|
74896
75178
|
/**
|
|
@@ -75699,6 +75981,8 @@ type RadioConfig = {
|
|
|
75699
75981
|
/**
|
|
75700
75982
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
75701
75983
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
75984
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75985
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-appendTo)
|
|
75702
75986
|
*/
|
|
75703
75987
|
appendTo?: HTMLElement|string
|
|
75704
75988
|
/**
|
|
@@ -75960,10 +76244,14 @@ type RadioConfig = {
|
|
|
75960
76244
|
inputWidth?: string|number
|
|
75961
76245
|
/**
|
|
75962
76246
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
76247
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
76248
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-insertBefore)
|
|
75963
76249
|
*/
|
|
75964
76250
|
insertBefore?: HTMLElement|string
|
|
75965
76251
|
/**
|
|
75966
76252
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
76253
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
76254
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Radio#config-insertFirst)
|
|
75967
76255
|
*/
|
|
75968
76256
|
insertFirst?: HTMLElement|string
|
|
75969
76257
|
/**
|
|
@@ -76834,6 +77122,8 @@ type RadioGroupConfig = {
|
|
|
76834
77122
|
/**
|
|
76835
77123
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
76836
77124
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
77125
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
77126
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-appendTo)
|
|
76837
77127
|
*/
|
|
76838
77128
|
appendTo?: HTMLElement|string
|
|
76839
77129
|
/**
|
|
@@ -77100,10 +77390,14 @@ type RadioGroupConfig = {
|
|
|
77100
77390
|
inputFieldAlign?: 'start'|'end'
|
|
77101
77391
|
/**
|
|
77102
77392
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
77393
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
77394
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-insertBefore)
|
|
77103
77395
|
*/
|
|
77104
77396
|
insertBefore?: HTMLElement|string
|
|
77105
77397
|
/**
|
|
77106
77398
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
77399
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
77400
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RadioGroup#config-insertFirst)
|
|
77107
77401
|
*/
|
|
77108
77402
|
insertFirst?: HTMLElement|string
|
|
77109
77403
|
/**
|
|
@@ -78041,6 +78335,8 @@ type RichTextFieldConfig = {
|
|
|
78041
78335
|
/**
|
|
78042
78336
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
78043
78337
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
78338
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
78339
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-appendTo)
|
|
78044
78340
|
*/
|
|
78045
78341
|
appendTo?: HTMLElement|string
|
|
78046
78342
|
/**
|
|
@@ -78300,10 +78596,14 @@ type RichTextFieldConfig = {
|
|
|
78300
78596
|
inputWidth?: string|number
|
|
78301
78597
|
/**
|
|
78302
78598
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
78599
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
78600
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-insertBefore)
|
|
78303
78601
|
*/
|
|
78304
78602
|
insertBefore?: HTMLElement|string
|
|
78305
78603
|
/**
|
|
78306
78604
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
78605
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
78606
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/RichTextField#config-insertFirst)
|
|
78307
78607
|
*/
|
|
78308
78608
|
insertFirst?: HTMLElement|string
|
|
78309
78609
|
/**
|
|
@@ -79189,6 +79489,8 @@ type SlideToggleConfig = {
|
|
|
79189
79489
|
/**
|
|
79190
79490
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
79191
79491
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
79492
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
79493
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-appendTo)
|
|
79192
79494
|
*/
|
|
79193
79495
|
appendTo?: HTMLElement|string
|
|
79194
79496
|
/**
|
|
@@ -79450,10 +79752,14 @@ type SlideToggleConfig = {
|
|
|
79450
79752
|
inputWidth?: string|number
|
|
79451
79753
|
/**
|
|
79452
79754
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
79755
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
79756
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-insertBefore)
|
|
79453
79757
|
*/
|
|
79454
79758
|
insertBefore?: HTMLElement|string
|
|
79455
79759
|
/**
|
|
79456
79760
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
79761
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
79762
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/SlideToggle#config-insertFirst)
|
|
79457
79763
|
*/
|
|
79458
79764
|
insertFirst?: HTMLElement|string
|
|
79459
79765
|
/**
|
|
@@ -80258,6 +80564,8 @@ type SliderConfig = {
|
|
|
80258
80564
|
/**
|
|
80259
80565
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
80260
80566
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
80567
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
80568
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-appendTo)
|
|
80261
80569
|
*/
|
|
80262
80570
|
appendTo?: HTMLElement|string
|
|
80263
80571
|
/**
|
|
@@ -80427,10 +80735,14 @@ type SliderConfig = {
|
|
|
80427
80735
|
ignoreParentReadOnly?: boolean
|
|
80428
80736
|
/**
|
|
80429
80737
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
80738
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
80739
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-insertBefore)
|
|
80430
80740
|
*/
|
|
80431
80741
|
insertBefore?: HTMLElement|string
|
|
80432
80742
|
/**
|
|
80433
80743
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
80744
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
80745
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Slider#config-insertFirst)
|
|
80434
80746
|
*/
|
|
80435
80747
|
insertFirst?: HTMLElement|string
|
|
80436
80748
|
/**
|
|
@@ -81253,6 +81565,8 @@ type SplitterConfig = {
|
|
|
81253
81565
|
/**
|
|
81254
81566
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
81255
81567
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
81568
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
81569
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-appendTo)
|
|
81256
81570
|
*/
|
|
81257
81571
|
appendTo?: HTMLElement|string
|
|
81258
81572
|
/**
|
|
@@ -81422,10 +81736,14 @@ type SplitterConfig = {
|
|
|
81422
81736
|
ignoreParentReadOnly?: boolean
|
|
81423
81737
|
/**
|
|
81424
81738
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
81739
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
81740
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-insertBefore)
|
|
81425
81741
|
*/
|
|
81426
81742
|
insertBefore?: HTMLElement|string
|
|
81427
81743
|
/**
|
|
81428
81744
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
81745
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
81746
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Splitter#config-insertFirst)
|
|
81429
81747
|
*/
|
|
81430
81748
|
insertFirst?: HTMLElement|string
|
|
81431
81749
|
/**
|
|
@@ -82211,6 +82529,8 @@ type TabConfig = {
|
|
|
82211
82529
|
/**
|
|
82212
82530
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
82213
82531
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
82532
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
82533
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-appendTo)
|
|
82214
82534
|
*/
|
|
82215
82535
|
appendTo?: HTMLElement|string
|
|
82216
82536
|
/**
|
|
@@ -82406,10 +82726,14 @@ type TabConfig = {
|
|
|
82406
82726
|
ignoreParentReadOnly?: boolean
|
|
82407
82727
|
/**
|
|
82408
82728
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
82729
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
82730
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-insertBefore)
|
|
82409
82731
|
*/
|
|
82410
82732
|
insertBefore?: HTMLElement|string
|
|
82411
82733
|
/**
|
|
82412
82734
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
82735
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
82736
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tab#config-insertFirst)
|
|
82413
82737
|
*/
|
|
82414
82738
|
insertFirst?: HTMLElement|string
|
|
82415
82739
|
/**
|
|
@@ -83248,6 +83572,8 @@ type TabBarConfig = {
|
|
|
83248
83572
|
/**
|
|
83249
83573
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
83250
83574
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
83575
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
83576
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-appendTo)
|
|
83251
83577
|
*/
|
|
83252
83578
|
appendTo?: HTMLElement|string
|
|
83253
83579
|
/**
|
|
@@ -83460,10 +83786,14 @@ type TabBarConfig = {
|
|
|
83460
83786
|
inputFieldAlign?: 'start'|'end'
|
|
83461
83787
|
/**
|
|
83462
83788
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
83789
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
83790
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-insertBefore)
|
|
83463
83791
|
*/
|
|
83464
83792
|
insertBefore?: HTMLElement|string
|
|
83465
83793
|
/**
|
|
83466
83794
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
83795
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
83796
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabBar#config-insertFirst)
|
|
83467
83797
|
*/
|
|
83468
83798
|
insertFirst?: HTMLElement|string
|
|
83469
83799
|
/**
|
|
@@ -84359,6 +84689,8 @@ type TabPanelConfig = {
|
|
|
84359
84689
|
/**
|
|
84360
84690
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
84361
84691
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
84692
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
84693
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-appendTo)
|
|
84362
84694
|
*/
|
|
84363
84695
|
appendTo?: HTMLElement|string
|
|
84364
84696
|
/**
|
|
@@ -84618,10 +84950,14 @@ type TabPanelConfig = {
|
|
|
84618
84950
|
inputFieldAlign?: 'start'|'end'
|
|
84619
84951
|
/**
|
|
84620
84952
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
84953
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
84954
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-insertBefore)
|
|
84621
84955
|
*/
|
|
84622
84956
|
insertBefore?: HTMLElement|string
|
|
84623
84957
|
/**
|
|
84624
84958
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
84959
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
84960
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TabPanel#config-insertFirst)
|
|
84625
84961
|
*/
|
|
84626
84962
|
insertFirst?: HTMLElement|string
|
|
84627
84963
|
/**
|
|
@@ -85588,6 +85924,8 @@ type TextAreaFieldConfig = {
|
|
|
85588
85924
|
/**
|
|
85589
85925
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
85590
85926
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
85927
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
85928
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-appendTo)
|
|
85591
85929
|
*/
|
|
85592
85930
|
appendTo?: HTMLElement|string
|
|
85593
85931
|
/**
|
|
@@ -85853,10 +86191,14 @@ type TextAreaFieldConfig = {
|
|
|
85853
86191
|
inputWidth?: string|number
|
|
85854
86192
|
/**
|
|
85855
86193
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
86194
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
86195
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-insertBefore)
|
|
85856
86196
|
*/
|
|
85857
86197
|
insertBefore?: HTMLElement|string
|
|
85858
86198
|
/**
|
|
85859
86199
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
86200
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
86201
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaField#config-insertFirst)
|
|
85860
86202
|
*/
|
|
85861
86203
|
insertFirst?: HTMLElement|string
|
|
85862
86204
|
/**
|
|
@@ -86720,6 +87062,8 @@ type TextAreaPickerFieldConfig = {
|
|
|
86720
87062
|
/**
|
|
86721
87063
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
86722
87064
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
87065
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
87066
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-appendTo)
|
|
86723
87067
|
*/
|
|
86724
87068
|
appendTo?: HTMLElement|string
|
|
86725
87069
|
/**
|
|
@@ -86976,10 +87320,14 @@ type TextAreaPickerFieldConfig = {
|
|
|
86976
87320
|
inputWidth?: string|number
|
|
86977
87321
|
/**
|
|
86978
87322
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
87323
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
87324
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-insertBefore)
|
|
86979
87325
|
*/
|
|
86980
87326
|
insertBefore?: HTMLElement|string
|
|
86981
87327
|
/**
|
|
86982
87328
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
87329
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
87330
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextAreaPickerField#config-insertFirst)
|
|
86983
87331
|
*/
|
|
86984
87332
|
insertFirst?: HTMLElement|string
|
|
86985
87333
|
/**
|
|
@@ -87857,6 +88205,8 @@ type TextFieldConfig = {
|
|
|
87857
88205
|
/**
|
|
87858
88206
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
87859
88207
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
88208
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
88209
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-appendTo)
|
|
87860
88210
|
*/
|
|
87861
88211
|
appendTo?: HTMLElement|string
|
|
87862
88212
|
/**
|
|
@@ -88116,10 +88466,14 @@ type TextFieldConfig = {
|
|
|
88116
88466
|
inputWidth?: string|number
|
|
88117
88467
|
/**
|
|
88118
88468
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
88469
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
88470
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-insertBefore)
|
|
88119
88471
|
*/
|
|
88120
88472
|
insertBefore?: HTMLElement|string
|
|
88121
88473
|
/**
|
|
88122
88474
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
88475
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
88476
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TextField#config-insertFirst)
|
|
88123
88477
|
*/
|
|
88124
88478
|
insertFirst?: HTMLElement|string
|
|
88125
88479
|
/**
|
|
@@ -88998,6 +89352,8 @@ type TimeFieldConfig = {
|
|
|
88998
89352
|
/**
|
|
88999
89353
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
89000
89354
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
89355
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
89356
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-appendTo)
|
|
89001
89357
|
*/
|
|
89002
89358
|
appendTo?: HTMLElement|string
|
|
89003
89359
|
/**
|
|
@@ -89263,10 +89619,14 @@ type TimeFieldConfig = {
|
|
|
89263
89619
|
inputWidth?: string|number
|
|
89264
89620
|
/**
|
|
89265
89621
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
89622
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
89623
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-insertBefore)
|
|
89266
89624
|
*/
|
|
89267
89625
|
insertBefore?: HTMLElement|string
|
|
89268
89626
|
/**
|
|
89269
89627
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
89628
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
89629
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimeField#config-insertFirst)
|
|
89270
89630
|
*/
|
|
89271
89631
|
insertFirst?: HTMLElement|string
|
|
89272
89632
|
/**
|
|
@@ -90167,6 +90527,8 @@ type TimePickerConfig = {
|
|
|
90167
90527
|
/**
|
|
90168
90528
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
90169
90529
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
90530
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
90531
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-appendTo)
|
|
90170
90532
|
*/
|
|
90171
90533
|
appendTo?: HTMLElement|string
|
|
90172
90534
|
/**
|
|
@@ -90374,10 +90736,14 @@ type TimePickerConfig = {
|
|
|
90374
90736
|
inputFieldAlign?: 'start'|'end'
|
|
90375
90737
|
/**
|
|
90376
90738
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
90739
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
90740
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-insertBefore)
|
|
90377
90741
|
*/
|
|
90378
90742
|
insertBefore?: HTMLElement|string
|
|
90379
90743
|
/**
|
|
90380
90744
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
90745
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
90746
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/TimePicker#config-insertFirst)
|
|
90381
90747
|
*/
|
|
90382
90748
|
insertFirst?: HTMLElement|string
|
|
90383
90749
|
/**
|
|
@@ -91141,6 +91507,8 @@ type ToastConfig = {
|
|
|
91141
91507
|
/**
|
|
91142
91508
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
91143
91509
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
91510
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
91511
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-appendTo)
|
|
91144
91512
|
*/
|
|
91145
91513
|
appendTo?: HTMLElement|string
|
|
91146
91514
|
/**
|
|
@@ -91310,10 +91678,14 @@ type ToastConfig = {
|
|
|
91310
91678
|
ignoreParentReadOnly?: boolean
|
|
91311
91679
|
/**
|
|
91312
91680
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
91681
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
91682
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-insertBefore)
|
|
91313
91683
|
*/
|
|
91314
91684
|
insertBefore?: HTMLElement|string
|
|
91315
91685
|
/**
|
|
91316
91686
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
91687
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
91688
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toast#config-insertFirst)
|
|
91317
91689
|
*/
|
|
91318
91690
|
insertFirst?: HTMLElement|string
|
|
91319
91691
|
/**
|
|
@@ -91999,6 +92371,8 @@ type ToolConfig = {
|
|
|
91999
92371
|
/**
|
|
92000
92372
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
92001
92373
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
92374
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
92375
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-appendTo)
|
|
92002
92376
|
*/
|
|
92003
92377
|
appendTo?: HTMLElement|string
|
|
92004
92378
|
/**
|
|
@@ -92182,10 +92556,14 @@ type ToolConfig = {
|
|
|
92182
92556
|
ignoreParentReadOnly?: boolean
|
|
92183
92557
|
/**
|
|
92184
92558
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
92559
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
92560
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-insertBefore)
|
|
92185
92561
|
*/
|
|
92186
92562
|
insertBefore?: HTMLElement|string
|
|
92187
92563
|
/**
|
|
92188
92564
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
92565
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
92566
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tool#config-insertFirst)
|
|
92189
92567
|
*/
|
|
92190
92568
|
insertFirst?: HTMLElement|string
|
|
92191
92569
|
/**
|
|
@@ -92924,6 +93302,8 @@ type ToolbarConfig = {
|
|
|
92924
93302
|
/**
|
|
92925
93303
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
92926
93304
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
93305
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93306
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-appendTo)
|
|
92927
93307
|
*/
|
|
92928
93308
|
appendTo?: HTMLElement|string
|
|
92929
93309
|
/**
|
|
@@ -93130,10 +93510,14 @@ type ToolbarConfig = {
|
|
|
93130
93510
|
inputFieldAlign?: 'start'|'end'
|
|
93131
93511
|
/**
|
|
93132
93512
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
93513
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93514
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-insertBefore)
|
|
93133
93515
|
*/
|
|
93134
93516
|
insertBefore?: HTMLElement|string
|
|
93135
93517
|
/**
|
|
93136
93518
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
93519
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93520
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Toolbar#config-insertFirst)
|
|
93137
93521
|
*/
|
|
93138
93522
|
insertFirst?: HTMLElement|string
|
|
93139
93523
|
/**
|
|
@@ -94072,6 +94456,8 @@ type TooltipConfig = {
|
|
|
94072
94456
|
/**
|
|
94073
94457
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
94074
94458
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
94459
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94460
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-appendTo)
|
|
94075
94461
|
*/
|
|
94076
94462
|
appendTo?: HTMLElement|string
|
|
94077
94463
|
/**
|
|
@@ -94330,10 +94716,11 @@ type TooltipConfig = {
|
|
|
94330
94716
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
94331
94717
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
94332
94718
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
94719
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
94333
94720
|
* @param {Event} context.event The raw DOM event
|
|
94334
94721
|
* @returns {string,Promise<any>}
|
|
94335
94722
|
*/
|
|
94336
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
94723
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
94337
94724
|
/**
|
|
94338
94725
|
* A config [object](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
94339
94726
|
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-header)
|
|
@@ -94409,10 +94796,14 @@ type TooltipConfig = {
|
|
|
94409
94796
|
inputFieldAlign?: 'start'|'end'
|
|
94410
94797
|
/**
|
|
94411
94798
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
94799
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94800
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-insertBefore)
|
|
94412
94801
|
*/
|
|
94413
94802
|
insertBefore?: HTMLElement|string
|
|
94414
94803
|
/**
|
|
94415
94804
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
94805
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94806
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Tooltip#config-insertFirst)
|
|
94416
94807
|
*/
|
|
94417
94808
|
insertFirst?: HTMLElement|string
|
|
94418
94809
|
/**
|
|
@@ -95350,6 +95741,8 @@ type WidgetConfig = {
|
|
|
95350
95741
|
/**
|
|
95351
95742
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
95352
95743
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
95744
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95745
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo)
|
|
95353
95746
|
*/
|
|
95354
95747
|
appendTo?: HTMLElement|string
|
|
95355
95748
|
/**
|
|
@@ -95519,10 +95912,14 @@ type WidgetConfig = {
|
|
|
95519
95912
|
ignoreParentReadOnly?: boolean
|
|
95520
95913
|
/**
|
|
95521
95914
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
95915
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95916
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-insertBefore)
|
|
95522
95917
|
*/
|
|
95523
95918
|
insertBefore?: HTMLElement|string
|
|
95524
95919
|
/**
|
|
95525
95920
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
95921
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95922
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-insertFirst)
|
|
95526
95923
|
*/
|
|
95527
95924
|
insertFirst?: HTMLElement|string
|
|
95528
95925
|
/**
|
|
@@ -95918,6 +96315,7 @@ export class Widget extends Base {
|
|
|
95918
96315
|
/**
|
|
95919
96316
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
95920
96317
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
96318
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95921
96319
|
*/
|
|
95922
96320
|
appendTo: HTMLElement|string
|
|
95923
96321
|
/**
|
|
@@ -96008,10 +96406,12 @@ export class Widget extends Base {
|
|
|
96008
96406
|
id: string
|
|
96009
96407
|
/**
|
|
96010
96408
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
96409
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96011
96410
|
*/
|
|
96012
96411
|
insertBefore: HTMLElement|string
|
|
96013
96412
|
/**
|
|
96014
96413
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
96414
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96015
96415
|
*/
|
|
96016
96416
|
insertFirst: HTMLElement|string
|
|
96017
96417
|
/**
|
|
@@ -96950,6 +97350,8 @@ type YearPickerConfig = {
|
|
|
96950
97350
|
/**
|
|
96951
97351
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
96952
97352
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
97353
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
97354
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-appendTo)
|
|
96953
97355
|
*/
|
|
96954
97356
|
appendTo?: HTMLElement|string
|
|
96955
97357
|
/**
|
|
@@ -97205,10 +97607,14 @@ type YearPickerConfig = {
|
|
|
97205
97607
|
inputFieldAlign?: 'start'|'end'
|
|
97206
97608
|
/**
|
|
97207
97609
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
97610
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
97611
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-insertBefore)
|
|
97208
97612
|
*/
|
|
97209
97613
|
insertBefore?: HTMLElement|string
|
|
97210
97614
|
/**
|
|
97211
97615
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
97616
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
97617
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/YearPicker#config-insertFirst)
|
|
97212
97618
|
*/
|
|
97213
97619
|
insertFirst?: HTMLElement|string
|
|
97214
97620
|
/**
|
|
@@ -98096,6 +98502,8 @@ type UndoRedoBaseConfig = {
|
|
|
98096
98502
|
/**
|
|
98097
98503
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
98098
98504
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
98505
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
98506
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-appendTo)
|
|
98099
98507
|
*/
|
|
98100
98508
|
appendTo?: HTMLElement|string
|
|
98101
98509
|
/**
|
|
@@ -98296,10 +98704,14 @@ type UndoRedoBaseConfig = {
|
|
|
98296
98704
|
inputFieldAlign?: 'start'|'end'
|
|
98297
98705
|
/**
|
|
98298
98706
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
98707
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
98708
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-insertBefore)
|
|
98299
98709
|
*/
|
|
98300
98710
|
insertBefore?: HTMLElement|string
|
|
98301
98711
|
/**
|
|
98302
98712
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
98713
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
98714
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/base/UndoRedoBase#config-insertFirst)
|
|
98303
98715
|
*/
|
|
98304
98716
|
insertFirst?: HTMLElement|string
|
|
98305
98717
|
/**
|
|
@@ -99049,6 +99461,8 @@ type AISettingsPanelConfig = {
|
|
|
99049
99461
|
/**
|
|
99050
99462
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
99051
99463
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
99464
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
99465
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-appendTo)
|
|
99052
99466
|
*/
|
|
99053
99467
|
appendTo?: HTMLElement|string
|
|
99054
99468
|
/**
|
|
@@ -99251,10 +99665,14 @@ type AISettingsPanelConfig = {
|
|
|
99251
99665
|
inputFieldAlign?: 'start'|'end'
|
|
99252
99666
|
/**
|
|
99253
99667
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
99668
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
99669
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-insertBefore)
|
|
99254
99670
|
*/
|
|
99255
99671
|
insertBefore?: HTMLElement|string
|
|
99256
99672
|
/**
|
|
99257
99673
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
99674
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
99675
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/AISettingsPanel#config-insertFirst)
|
|
99258
99676
|
*/
|
|
99259
99677
|
insertFirst?: HTMLElement|string
|
|
99260
99678
|
/**
|
|
@@ -100128,6 +100546,8 @@ type ChatPanelConfig = {
|
|
|
100128
100546
|
/**
|
|
100129
100547
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
100130
100548
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
100549
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100550
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-appendTo)
|
|
100131
100551
|
*/
|
|
100132
100552
|
appendTo?: HTMLElement|string
|
|
100133
100553
|
/**
|
|
@@ -100398,10 +100818,14 @@ type ChatPanelConfig = {
|
|
|
100398
100818
|
inputFieldAlign?: 'start'|'end'
|
|
100399
100819
|
/**
|
|
100400
100820
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
100821
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100822
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-insertBefore)
|
|
100401
100823
|
*/
|
|
100402
100824
|
insertBefore?: HTMLElement|string
|
|
100403
100825
|
/**
|
|
100404
100826
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
100827
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100828
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ChatPanel#config-insertFirst)
|
|
100405
100829
|
*/
|
|
100406
100830
|
insertFirst?: HTMLElement|string
|
|
100407
100831
|
/**
|
|
@@ -101566,6 +101990,8 @@ type ConfirmationDialogConfig = {
|
|
|
101566
101990
|
/**
|
|
101567
101991
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
101568
101992
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
101993
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
101994
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-appendTo)
|
|
101569
101995
|
*/
|
|
101570
101996
|
appendTo?: HTMLElement|string
|
|
101571
101997
|
/**
|
|
@@ -101750,10 +102176,14 @@ type ConfirmationDialogConfig = {
|
|
|
101750
102176
|
inputFieldAlign?: 'start'|'end'
|
|
101751
102177
|
/**
|
|
101752
102178
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
102179
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
102180
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-insertBefore)
|
|
101753
102181
|
*/
|
|
101754
102182
|
insertBefore?: HTMLElement|string
|
|
101755
102183
|
/**
|
|
101756
102184
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
102185
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
102186
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/chat/ConfirmationDialog#config-insertFirst)
|
|
101757
102187
|
*/
|
|
101758
102188
|
insertFirst?: HTMLElement|string
|
|
101759
102189
|
/**
|
|
@@ -102466,6 +102896,8 @@ type HistogramConfig = {
|
|
|
102466
102896
|
/**
|
|
102467
102897
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
102468
102898
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
102899
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
102900
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-appendTo)
|
|
102469
102901
|
*/
|
|
102470
102902
|
appendTo?: HTMLElement|string
|
|
102471
102903
|
/**
|
|
@@ -102717,10 +103149,14 @@ type HistogramConfig = {
|
|
|
102717
103149
|
ignoreParentReadOnly?: boolean
|
|
102718
103150
|
/**
|
|
102719
103151
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
103152
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103153
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-insertBefore)
|
|
102720
103154
|
*/
|
|
102721
103155
|
insertBefore?: HTMLElement|string
|
|
102722
103156
|
/**
|
|
102723
103157
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
103158
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103159
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Histogram#config-insertFirst)
|
|
102724
103160
|
*/
|
|
102725
103161
|
insertFirst?: HTMLElement|string
|
|
102726
103162
|
/**
|
|
@@ -103372,6 +103808,8 @@ type ScaleConfig = {
|
|
|
103372
103808
|
/**
|
|
103373
103809
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
103374
103810
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
103811
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103812
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-appendTo)
|
|
103375
103813
|
*/
|
|
103376
103814
|
appendTo?: HTMLElement|string
|
|
103377
103815
|
/**
|
|
@@ -103545,10 +103983,14 @@ type ScaleConfig = {
|
|
|
103545
103983
|
ignoreParentReadOnly?: boolean
|
|
103546
103984
|
/**
|
|
103547
103985
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
103986
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103987
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-insertBefore)
|
|
103548
103988
|
*/
|
|
103549
103989
|
insertBefore?: HTMLElement|string
|
|
103550
103990
|
/**
|
|
103551
103991
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
103992
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103993
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Core/widget/graph/Scale#config-insertFirst)
|
|
103552
103994
|
*/
|
|
103553
103995
|
insertFirst?: HTMLElement|string
|
|
103554
103996
|
/**
|
|
@@ -120366,6 +120808,8 @@ type CellTooltipConfig = {
|
|
|
120366
120808
|
/**
|
|
120367
120809
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
120368
120810
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
120811
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
120812
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-appendTo)
|
|
120369
120813
|
*/
|
|
120370
120814
|
appendTo?: HTMLElement|string
|
|
120371
120815
|
/**
|
|
@@ -120627,10 +121071,11 @@ type CellTooltipConfig = {
|
|
|
120627
121071
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
120628
121072
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
120629
121073
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
121074
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
120630
121075
|
* @param {Event} context.event The raw DOM event
|
|
120631
121076
|
* @returns {string,Promise<any>}
|
|
120632
121077
|
*/
|
|
120633
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
121078
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
120634
121079
|
/**
|
|
120635
121080
|
* A config [object](https://bryntum.com/products/grid/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
120636
121081
|
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-header)
|
|
@@ -120706,10 +121151,14 @@ type CellTooltipConfig = {
|
|
|
120706
121151
|
inputFieldAlign?: 'start'|'end'
|
|
120707
121152
|
/**
|
|
120708
121153
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
121154
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
121155
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-insertBefore)
|
|
120709
121156
|
*/
|
|
120710
121157
|
insertBefore?: HTMLElement|string
|
|
120711
121158
|
/**
|
|
120712
121159
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
121160
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
121161
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/feature/CellTooltip#config-insertFirst)
|
|
120713
121162
|
*/
|
|
120714
121163
|
insertFirst?: HTMLElement|string
|
|
120715
121164
|
/**
|
|
@@ -134888,6 +135337,8 @@ type GridConfig = {
|
|
|
134888
135337
|
/**
|
|
134889
135338
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
134890
135339
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
135340
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
135341
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-appendTo)
|
|
134891
135342
|
*/
|
|
134892
135343
|
appendTo?: HTMLElement|string
|
|
134893
135344
|
/**
|
|
@@ -135202,10 +135653,14 @@ type GridConfig = {
|
|
|
135202
135653
|
inputFieldAlign?: 'start'|'end'
|
|
135203
135654
|
/**
|
|
135204
135655
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
135656
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
135657
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertBefore)
|
|
135205
135658
|
*/
|
|
135206
135659
|
insertBefore?: HTMLElement|string
|
|
135207
135660
|
/**
|
|
135208
135661
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
135662
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
135663
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/Grid#config-insertFirst)
|
|
135209
135664
|
*/
|
|
135210
135665
|
insertFirst?: HTMLElement|string
|
|
135211
135666
|
/**
|
|
@@ -138943,6 +139398,8 @@ type GridBaseConfig = {
|
|
|
138943
139398
|
/**
|
|
138944
139399
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
138945
139400
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
139401
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
139402
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-appendTo)
|
|
138946
139403
|
*/
|
|
138947
139404
|
appendTo?: HTMLElement|string
|
|
138948
139405
|
/**
|
|
@@ -139257,10 +139714,14 @@ type GridBaseConfig = {
|
|
|
139257
139714
|
inputFieldAlign?: 'start'|'end'
|
|
139258
139715
|
/**
|
|
139259
139716
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
139717
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
139718
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertBefore)
|
|
139260
139719
|
*/
|
|
139261
139720
|
insertBefore?: HTMLElement|string
|
|
139262
139721
|
/**
|
|
139263
139722
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
139723
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
139724
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/GridBase#config-insertFirst)
|
|
139264
139725
|
*/
|
|
139265
139726
|
insertFirst?: HTMLElement|string
|
|
139266
139727
|
/**
|
|
@@ -145415,6 +145876,8 @@ type TreeGridConfig = {
|
|
|
145415
145876
|
/**
|
|
145416
145877
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
145417
145878
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
145879
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
145880
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-appendTo)
|
|
145418
145881
|
*/
|
|
145419
145882
|
appendTo?: HTMLElement|string
|
|
145420
145883
|
/**
|
|
@@ -145729,10 +146192,14 @@ type TreeGridConfig = {
|
|
|
145729
146192
|
inputFieldAlign?: 'start'|'end'
|
|
145730
146193
|
/**
|
|
145731
146194
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
146195
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
146196
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertBefore)
|
|
145732
146197
|
*/
|
|
145733
146198
|
insertBefore?: HTMLElement|string
|
|
145734
146199
|
/**
|
|
145735
146200
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
146201
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
146202
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/TreeGrid#config-insertFirst)
|
|
145736
146203
|
*/
|
|
145737
146204
|
insertFirst?: HTMLElement|string
|
|
145738
146205
|
/**
|
|
@@ -147726,6 +148193,8 @@ type ExportDialogConfig = {
|
|
|
147726
148193
|
/**
|
|
147727
148194
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
147728
148195
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
148196
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
148197
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-appendTo)
|
|
147729
148198
|
*/
|
|
147730
148199
|
appendTo?: HTMLElement|string
|
|
147731
148200
|
/**
|
|
@@ -148027,10 +148496,14 @@ type ExportDialogConfig = {
|
|
|
148027
148496
|
inputFieldAlign?: 'start'|'end'
|
|
148028
148497
|
/**
|
|
148029
148498
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
148499
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
148500
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-insertBefore)
|
|
148030
148501
|
*/
|
|
148031
148502
|
insertBefore?: HTMLElement|string
|
|
148032
148503
|
/**
|
|
148033
148504
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
148505
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
148506
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/view/export/ExportDialog#config-insertFirst)
|
|
148034
148507
|
*/
|
|
148035
148508
|
insertFirst?: HTMLElement|string
|
|
148036
148509
|
/**
|
|
@@ -149725,6 +150198,8 @@ type AIFilterFieldConfig = {
|
|
|
149725
150198
|
/**
|
|
149726
150199
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
149727
150200
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
150201
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
150202
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-appendTo)
|
|
149728
150203
|
*/
|
|
149729
150204
|
appendTo?: HTMLElement|string
|
|
149730
150205
|
/**
|
|
@@ -149989,10 +150464,14 @@ type AIFilterFieldConfig = {
|
|
|
149989
150464
|
inputWidth?: string|number
|
|
149990
150465
|
/**
|
|
149991
150466
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
150467
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
150468
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertBefore)
|
|
149992
150469
|
*/
|
|
149993
150470
|
insertBefore?: HTMLElement|string
|
|
149994
150471
|
/**
|
|
149995
150472
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
150473
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
150474
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/AIFilterField#config-insertFirst)
|
|
149996
150475
|
*/
|
|
149997
150476
|
insertFirst?: HTMLElement|string
|
|
149998
150477
|
/**
|
|
@@ -150871,6 +151350,8 @@ type ChecklistFilterComboConfig = {
|
|
|
150871
151350
|
/**
|
|
150872
151351
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
150873
151352
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
151353
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
151354
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
|
|
150874
151355
|
*/
|
|
150875
151356
|
appendTo?: HTMLElement|string
|
|
150876
151357
|
/**
|
|
@@ -151233,10 +151714,14 @@ type ChecklistFilterComboConfig = {
|
|
|
151233
151714
|
inputWidth?: string|number
|
|
151234
151715
|
/**
|
|
151235
151716
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
151717
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
151718
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
|
|
151236
151719
|
*/
|
|
151237
151720
|
insertBefore?: HTMLElement|string
|
|
151238
151721
|
/**
|
|
151239
151722
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
151723
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
151724
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
|
|
151240
151725
|
*/
|
|
151241
151726
|
insertFirst?: HTMLElement|string
|
|
151242
151727
|
/**
|
|
@@ -152113,6 +152598,8 @@ type GridChartDesignerConfig = {
|
|
|
152113
152598
|
/**
|
|
152114
152599
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
152115
152600
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
152601
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
152602
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
|
|
152116
152603
|
*/
|
|
152117
152604
|
appendTo?: HTMLElement|string
|
|
152118
152605
|
/**
|
|
@@ -152288,10 +152775,14 @@ type GridChartDesignerConfig = {
|
|
|
152288
152775
|
ignoreParentReadOnly?: boolean
|
|
152289
152776
|
/**
|
|
152290
152777
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
152778
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
152779
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
|
|
152291
152780
|
*/
|
|
152292
152781
|
insertBefore?: HTMLElement|string
|
|
152293
152782
|
/**
|
|
152294
152783
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
152784
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
152785
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
|
|
152295
152786
|
*/
|
|
152296
152787
|
insertFirst?: HTMLElement|string
|
|
152297
152788
|
/**
|
|
@@ -152974,6 +153465,8 @@ type GridFieldFilterPickerConfig = {
|
|
|
152974
153465
|
/**
|
|
152975
153466
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
152976
153467
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
153468
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
153469
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
|
|
152977
153470
|
*/
|
|
152978
153471
|
appendTo?: HTMLElement|string
|
|
152979
153472
|
/**
|
|
@@ -153208,10 +153701,14 @@ type GridFieldFilterPickerConfig = {
|
|
|
153208
153701
|
inputFieldAlign?: 'start'|'end'
|
|
153209
153702
|
/**
|
|
153210
153703
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
153704
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
153705
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
|
|
153211
153706
|
*/
|
|
153212
153707
|
insertBefore?: HTMLElement|string
|
|
153213
153708
|
/**
|
|
153214
153709
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
153710
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
153711
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
|
|
153215
153712
|
*/
|
|
153216
153713
|
insertFirst?: HTMLElement|string
|
|
153217
153714
|
/**
|
|
@@ -154033,6 +154530,8 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
154033
154530
|
/**
|
|
154034
154531
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
154035
154532
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
154533
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
154534
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
|
|
154036
154535
|
*/
|
|
154037
154536
|
appendTo?: HTMLElement|string
|
|
154038
154537
|
/**
|
|
@@ -154279,10 +154778,14 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
154279
154778
|
inputFieldAlign?: 'start'|'end'
|
|
154280
154779
|
/**
|
|
154281
154780
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
154781
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
154782
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
154282
154783
|
*/
|
|
154283
154784
|
insertBefore?: HTMLElement|string
|
|
154284
154785
|
/**
|
|
154285
154786
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
154787
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
154788
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
154286
154789
|
*/
|
|
154287
154790
|
insertFirst?: HTMLElement|string
|
|
154288
154791
|
/**
|
|
@@ -155129,6 +155632,8 @@ type GroupBarConfig = {
|
|
|
155129
155632
|
/**
|
|
155130
155633
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
155131
155634
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
155635
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
155636
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-appendTo)
|
|
155132
155637
|
*/
|
|
155133
155638
|
appendTo?: HTMLElement|string
|
|
155134
155639
|
/**
|
|
@@ -155178,9 +155683,11 @@ type GroupBarConfig = {
|
|
|
155178
155683
|
/**
|
|
155179
155684
|
* If [closable](https://bryntum.com/products/grid/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
|
|
155180
155685
|
* action means. If not provided, the record representing the chip is removed from the store.
|
|
155686
|
+
* @param {Core.data.Model[]} records Records to be closed
|
|
155687
|
+
* @param {object} options Close options
|
|
155181
155688
|
* @returns {void}
|
|
155182
155689
|
*/
|
|
155183
|
-
closeHandler?: string|(() => void)
|
|
155690
|
+
closeHandler?: string|((records: Model[], options: object) => void)
|
|
155184
155691
|
/**
|
|
155185
155692
|
* Custom CSS classes to add to element.
|
|
155186
155693
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -155355,10 +155862,14 @@ type GroupBarConfig = {
|
|
|
155355
155862
|
ignoreParentReadOnly?: boolean
|
|
155356
155863
|
/**
|
|
155357
155864
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
155865
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
155866
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertBefore)
|
|
155358
155867
|
*/
|
|
155359
155868
|
insertBefore?: HTMLElement|string
|
|
155360
155869
|
/**
|
|
155361
155870
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
155871
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
155872
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/GroupBar#config-insertFirst)
|
|
155362
155873
|
*/
|
|
155363
155874
|
insertFirst?: HTMLElement|string
|
|
155364
155875
|
/**
|
|
@@ -156188,6 +156699,8 @@ type TreeComboConfig = {
|
|
|
156188
156699
|
/**
|
|
156189
156700
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
156190
156701
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#property-element).
|
|
156702
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
156703
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-appendTo)
|
|
156191
156704
|
*/
|
|
156192
156705
|
appendTo?: HTMLElement|string
|
|
156193
156706
|
/**
|
|
@@ -156550,10 +157063,14 @@ type TreeComboConfig = {
|
|
|
156550
157063
|
inputWidth?: string|number
|
|
156551
157064
|
/**
|
|
156552
157065
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
157066
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
157067
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertBefore)
|
|
156553
157068
|
*/
|
|
156554
157069
|
insertBefore?: HTMLElement|string
|
|
156555
157070
|
/**
|
|
156556
157071
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/grid/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
157072
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
157073
|
+
* [More...](https://bryntum.com/products/grid/docs/api/Grid/widget/TreeCombo#config-insertFirst)
|
|
156557
157074
|
*/
|
|
156558
157075
|
insertFirst?: HTMLElement|string
|
|
156559
157076
|
/**
|