@bryntum/scheduler-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/locales/scheduler.locale.Ar.js +1 -1
- package/locales/scheduler.locale.Bg.js +1 -1
- package/locales/scheduler.locale.Ca.js +1 -1
- package/locales/scheduler.locale.Cs.js +1 -1
- package/locales/scheduler.locale.Da.js +1 -1
- package/locales/scheduler.locale.De.js +1 -1
- package/locales/scheduler.locale.El.js +1 -1
- package/locales/scheduler.locale.En.js +1 -1
- package/locales/scheduler.locale.EnGb.js +1 -1
- package/locales/scheduler.locale.Es.js +1 -1
- package/locales/scheduler.locale.Et.js +1 -1
- package/locales/scheduler.locale.Eu.js +1 -1
- package/locales/scheduler.locale.Fi.js +1 -1
- package/locales/scheduler.locale.FrFr.js +1 -1
- package/locales/scheduler.locale.Gl.js +1 -1
- package/locales/scheduler.locale.He.js +1 -1
- package/locales/scheduler.locale.Hi.js +1 -1
- package/locales/scheduler.locale.Hr.js +1 -1
- package/locales/scheduler.locale.Hu.js +1 -1
- package/locales/scheduler.locale.Id.js +1 -1
- package/locales/scheduler.locale.It.js +1 -1
- package/locales/scheduler.locale.Ja.js +1 -1
- package/locales/scheduler.locale.Kk.js +1 -1
- package/locales/scheduler.locale.Ko.js +1 -1
- package/locales/scheduler.locale.Lt.js +1 -1
- package/locales/scheduler.locale.Lv.js +1 -1
- package/locales/scheduler.locale.Ms.js +1 -1
- package/locales/scheduler.locale.Nl.js +1 -1
- package/locales/scheduler.locale.No.js +1 -1
- package/locales/scheduler.locale.Pl.js +1 -1
- package/locales/scheduler.locale.Pt.js +1 -1
- package/locales/scheduler.locale.PtBr.js +1 -1
- package/locales/scheduler.locale.Ro.js +1 -1
- package/locales/scheduler.locale.Ru.js +1 -1
- package/locales/scheduler.locale.Sk.js +1 -1
- package/locales/scheduler.locale.Sl.js +1 -1
- package/locales/scheduler.locale.Sr.js +1 -1
- package/locales/scheduler.locale.SrRs.js +1 -1
- package/locales/scheduler.locale.SvSE.js +1 -1
- package/locales/scheduler.locale.Th.js +1 -1
- package/locales/scheduler.locale.Tr.js +1 -1
- package/locales/scheduler.locale.Uk.js +1 -1
- package/locales/scheduler.locale.Vi.js +1 -1
- package/locales/scheduler.locale.ZhCn.js +1 -1
- package/locales/scheduler.locale.ZhTw.js +1 -1
- package/package.json +1 -1
- package/scheduler.css +1 -1
- package/scheduler.d.ts +788 -43
- package/scheduler.module.js +45 -45
- package/scheduler.thin.d.ts +266 -38
- package/scheduler.umd.js +57 -57
package/scheduler.d.ts
CHANGED
|
@@ -20766,6 +20766,8 @@ type BooleanComboConfig = {
|
|
|
20766
20766
|
/**
|
|
20767
20767
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
20768
20768
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
20769
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
20770
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/BooleanCombo#config-appendTo)
|
|
20769
20771
|
*/
|
|
20770
20772
|
appendTo?: HTMLElement|string
|
|
20771
20773
|
/**
|
|
@@ -21128,10 +21130,14 @@ type BooleanComboConfig = {
|
|
|
21128
21130
|
inputWidth?: string|number
|
|
21129
21131
|
/**
|
|
21130
21132
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
21133
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
21134
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/BooleanCombo#config-insertBefore)
|
|
21131
21135
|
*/
|
|
21132
21136
|
insertBefore?: HTMLElement|string
|
|
21133
21137
|
/**
|
|
21134
21138
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
21139
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
21140
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/BooleanCombo#config-insertFirst)
|
|
21135
21141
|
*/
|
|
21136
21142
|
insertFirst?: HTMLElement|string
|
|
21137
21143
|
/**
|
|
@@ -22099,6 +22105,8 @@ type ButtonConfig = {
|
|
|
22099
22105
|
/**
|
|
22100
22106
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
22101
22107
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
22108
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
22109
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Button#config-appendTo)
|
|
22102
22110
|
*/
|
|
22103
22111
|
appendTo?: HTMLElement|string
|
|
22104
22112
|
/**
|
|
@@ -22290,10 +22298,14 @@ type ButtonConfig = {
|
|
|
22290
22298
|
ignoreParentReadOnly?: boolean
|
|
22291
22299
|
/**
|
|
22292
22300
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
22301
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
22302
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Button#config-insertBefore)
|
|
22293
22303
|
*/
|
|
22294
22304
|
insertBefore?: HTMLElement|string
|
|
22295
22305
|
/**
|
|
22296
22306
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
22307
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
22308
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Button#config-insertFirst)
|
|
22297
22309
|
*/
|
|
22298
22310
|
insertFirst?: HTMLElement|string
|
|
22299
22311
|
/**
|
|
@@ -23248,6 +23260,8 @@ type ButtonGroupConfig = {
|
|
|
23248
23260
|
/**
|
|
23249
23261
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
23250
23262
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
23263
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
23264
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ButtonGroup#config-appendTo)
|
|
23251
23265
|
*/
|
|
23252
23266
|
appendTo?: HTMLElement|string
|
|
23253
23267
|
/**
|
|
@@ -23447,10 +23461,14 @@ type ButtonGroupConfig = {
|
|
|
23447
23461
|
inputFieldAlign?: 'start'|'end'
|
|
23448
23462
|
/**
|
|
23449
23463
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
23464
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
23465
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ButtonGroup#config-insertBefore)
|
|
23450
23466
|
*/
|
|
23451
23467
|
insertBefore?: HTMLElement|string
|
|
23452
23468
|
/**
|
|
23453
23469
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
23470
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
23471
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ButtonGroup#config-insertFirst)
|
|
23454
23472
|
*/
|
|
23455
23473
|
insertFirst?: HTMLElement|string
|
|
23456
23474
|
/**
|
|
@@ -24412,6 +24430,8 @@ type CalendarPanelConfig = {
|
|
|
24412
24430
|
/**
|
|
24413
24431
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
24414
24432
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
24433
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
24434
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CalendarPanel#config-appendTo)
|
|
24415
24435
|
*/
|
|
24416
24436
|
appendTo?: HTMLElement|string
|
|
24417
24437
|
/**
|
|
@@ -24730,10 +24750,14 @@ type CalendarPanelConfig = {
|
|
|
24730
24750
|
inputFieldAlign?: 'start'|'end'
|
|
24731
24751
|
/**
|
|
24732
24752
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
24753
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
24754
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CalendarPanel#config-insertBefore)
|
|
24733
24755
|
*/
|
|
24734
24756
|
insertBefore?: HTMLElement|string
|
|
24735
24757
|
/**
|
|
24736
24758
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
24759
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
24760
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CalendarPanel#config-insertFirst)
|
|
24737
24761
|
*/
|
|
24738
24762
|
insertFirst?: HTMLElement|string
|
|
24739
24763
|
/**
|
|
@@ -25838,6 +25862,8 @@ type CarouselConfig = {
|
|
|
25838
25862
|
/**
|
|
25839
25863
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
25840
25864
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
25865
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
25866
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Carousel#config-appendTo)
|
|
25841
25867
|
*/
|
|
25842
25868
|
appendTo?: HTMLElement|string
|
|
25843
25869
|
/**
|
|
@@ -26125,10 +26151,14 @@ type CarouselConfig = {
|
|
|
26125
26151
|
inputFieldAlign?: 'start'|'end'
|
|
26126
26152
|
/**
|
|
26127
26153
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
26154
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
26155
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Carousel#config-insertBefore)
|
|
26128
26156
|
*/
|
|
26129
26157
|
insertBefore?: HTMLElement|string
|
|
26130
26158
|
/**
|
|
26131
26159
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
26160
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
26161
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Carousel#config-insertFirst)
|
|
26132
26162
|
*/
|
|
26133
26163
|
insertFirst?: HTMLElement|string
|
|
26134
26164
|
/**
|
|
@@ -27209,6 +27239,8 @@ type CheckboxConfig = {
|
|
|
27209
27239
|
/**
|
|
27210
27240
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
27211
27241
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
27242
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
27243
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Checkbox#config-appendTo)
|
|
27212
27244
|
*/
|
|
27213
27245
|
appendTo?: HTMLElement|string
|
|
27214
27246
|
/**
|
|
@@ -27470,10 +27502,14 @@ type CheckboxConfig = {
|
|
|
27470
27502
|
inputWidth?: string|number
|
|
27471
27503
|
/**
|
|
27472
27504
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
27505
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
27506
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Checkbox#config-insertBefore)
|
|
27473
27507
|
*/
|
|
27474
27508
|
insertBefore?: HTMLElement|string
|
|
27475
27509
|
/**
|
|
27476
27510
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
27511
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
27512
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Checkbox#config-insertFirst)
|
|
27477
27513
|
*/
|
|
27478
27514
|
insertFirst?: HTMLElement|string
|
|
27479
27515
|
/**
|
|
@@ -28439,6 +28475,8 @@ type CheckboxGroupConfig = {
|
|
|
28439
28475
|
/**
|
|
28440
28476
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
28441
28477
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
28478
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
28479
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CheckboxGroup#config-appendTo)
|
|
28442
28480
|
*/
|
|
28443
28481
|
appendTo?: HTMLElement|string
|
|
28444
28482
|
/**
|
|
@@ -28700,10 +28738,14 @@ type CheckboxGroupConfig = {
|
|
|
28700
28738
|
inputFieldAlign?: 'start'|'end'
|
|
28701
28739
|
/**
|
|
28702
28740
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
28741
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
28742
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CheckboxGroup#config-insertBefore)
|
|
28703
28743
|
*/
|
|
28704
28744
|
insertBefore?: HTMLElement|string
|
|
28705
28745
|
/**
|
|
28706
28746
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
28747
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
28748
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CheckboxGroup#config-insertFirst)
|
|
28707
28749
|
*/
|
|
28708
28750
|
insertFirst?: HTMLElement|string
|
|
28709
28751
|
/**
|
|
@@ -29700,6 +29742,8 @@ type ChipViewConfig = {
|
|
|
29700
29742
|
/**
|
|
29701
29743
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
29702
29744
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
29745
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
29746
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView#config-appendTo)
|
|
29703
29747
|
*/
|
|
29704
29748
|
appendTo?: HTMLElement|string
|
|
29705
29749
|
/**
|
|
@@ -29749,9 +29793,11 @@ type ChipViewConfig = {
|
|
|
29749
29793
|
/**
|
|
29750
29794
|
* If [closable](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
|
|
29751
29795
|
* action means. If not provided, the record representing the chip is removed from the store.
|
|
29796
|
+
* @param {Core.data.Model[]} records Records to be closed
|
|
29797
|
+
* @param {object} options Close options
|
|
29752
29798
|
* @returns {void}
|
|
29753
29799
|
*/
|
|
29754
|
-
closeHandler?: string|(() => void)
|
|
29800
|
+
closeHandler?: string|((records: Model[], options: object) => void)
|
|
29755
29801
|
/**
|
|
29756
29802
|
* Custom CSS classes to add to element.
|
|
29757
29803
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -29926,10 +29972,14 @@ type ChipViewConfig = {
|
|
|
29926
29972
|
ignoreParentReadOnly?: boolean
|
|
29927
29973
|
/**
|
|
29928
29974
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
29975
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
29976
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView#config-insertBefore)
|
|
29929
29977
|
*/
|
|
29930
29978
|
insertBefore?: HTMLElement|string
|
|
29931
29979
|
/**
|
|
29932
29980
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
29981
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
29982
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView#config-insertFirst)
|
|
29933
29983
|
*/
|
|
29934
29984
|
insertFirst?: HTMLElement|string
|
|
29935
29985
|
/**
|
|
@@ -30750,6 +30800,8 @@ type CodeEditorConfig = {
|
|
|
30750
30800
|
/**
|
|
30751
30801
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30752
30802
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
30803
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
30804
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CodeEditor#config-appendTo)
|
|
30753
30805
|
*/
|
|
30754
30806
|
appendTo?: HTMLElement|string
|
|
30755
30807
|
/**
|
|
@@ -31014,10 +31066,14 @@ type CodeEditorConfig = {
|
|
|
31014
31066
|
inputFieldAlign?: 'start'|'end'
|
|
31015
31067
|
/**
|
|
31016
31068
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
31069
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
31070
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CodeEditor#config-insertBefore)
|
|
31017
31071
|
*/
|
|
31018
31072
|
insertBefore?: HTMLElement|string
|
|
31019
31073
|
/**
|
|
31020
31074
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
31075
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
31076
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/CodeEditor#config-insertFirst)
|
|
31021
31077
|
*/
|
|
31022
31078
|
insertFirst?: HTMLElement|string
|
|
31023
31079
|
/**
|
|
@@ -31986,6 +32042,8 @@ type ColorFieldConfig = {
|
|
|
31986
32042
|
/**
|
|
31987
32043
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
31988
32044
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
32045
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32046
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorField#config-appendTo)
|
|
31989
32047
|
*/
|
|
31990
32048
|
appendTo?: HTMLElement|string
|
|
31991
32049
|
/**
|
|
@@ -32243,10 +32301,14 @@ type ColorFieldConfig = {
|
|
|
32243
32301
|
inputWidth?: string|number
|
|
32244
32302
|
/**
|
|
32245
32303
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
32304
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32305
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorField#config-insertBefore)
|
|
32246
32306
|
*/
|
|
32247
32307
|
insertBefore?: HTMLElement|string
|
|
32248
32308
|
/**
|
|
32249
32309
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
32310
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32311
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorField#config-insertFirst)
|
|
32250
32312
|
*/
|
|
32251
32313
|
insertFirst?: HTMLElement|string
|
|
32252
32314
|
/**
|
|
@@ -33131,6 +33193,8 @@ type ColorPickerConfig = {
|
|
|
33131
33193
|
/**
|
|
33132
33194
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
33133
33195
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
33196
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
33197
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorPicker#config-appendTo)
|
|
33134
33198
|
*/
|
|
33135
33199
|
appendTo?: HTMLElement|string
|
|
33136
33200
|
/**
|
|
@@ -33357,10 +33421,14 @@ type ColorPickerConfig = {
|
|
|
33357
33421
|
ignoreParentReadOnly?: boolean
|
|
33358
33422
|
/**
|
|
33359
33423
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
33424
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
33425
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorPicker#config-insertBefore)
|
|
33360
33426
|
*/
|
|
33361
33427
|
insertBefore?: HTMLElement|string
|
|
33362
33428
|
/**
|
|
33363
33429
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
33430
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
33431
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ColorPicker#config-insertFirst)
|
|
33364
33432
|
*/
|
|
33365
33433
|
insertFirst?: HTMLElement|string
|
|
33366
33434
|
/**
|
|
@@ -34211,6 +34279,8 @@ type ComboConfig = {
|
|
|
34211
34279
|
/**
|
|
34212
34280
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
34213
34281
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
34282
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34283
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-appendTo)
|
|
34214
34284
|
*/
|
|
34215
34285
|
appendTo?: HTMLElement|string
|
|
34216
34286
|
/**
|
|
@@ -34573,10 +34643,14 @@ type ComboConfig = {
|
|
|
34573
34643
|
inputWidth?: string|number
|
|
34574
34644
|
/**
|
|
34575
34645
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
34646
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34647
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-insertBefore)
|
|
34576
34648
|
*/
|
|
34577
34649
|
insertBefore?: HTMLElement|string
|
|
34578
34650
|
/**
|
|
34579
34651
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
34652
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
34653
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Combo#config-insertFirst)
|
|
34580
34654
|
*/
|
|
34581
34655
|
insertFirst?: HTMLElement|string
|
|
34582
34656
|
/**
|
|
@@ -35609,6 +35683,8 @@ type ConfirmationBarConfig = {
|
|
|
35609
35683
|
/**
|
|
35610
35684
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
35611
35685
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
35686
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35687
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ConfirmationBar#config-appendTo)
|
|
35612
35688
|
*/
|
|
35613
35689
|
appendTo?: HTMLElement|string
|
|
35614
35690
|
/**
|
|
@@ -35819,10 +35895,14 @@ type ConfirmationBarConfig = {
|
|
|
35819
35895
|
inputFieldAlign?: 'start'|'end'
|
|
35820
35896
|
/**
|
|
35821
35897
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
35898
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35899
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ConfirmationBar#config-insertBefore)
|
|
35822
35900
|
*/
|
|
35823
35901
|
insertBefore?: HTMLElement|string
|
|
35824
35902
|
/**
|
|
35825
35903
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
35904
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
35905
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ConfirmationBar#config-insertFirst)
|
|
35826
35906
|
*/
|
|
35827
35907
|
insertFirst?: HTMLElement|string
|
|
35828
35908
|
/**
|
|
@@ -36652,6 +36732,8 @@ type ContainerConfig = {
|
|
|
36652
36732
|
/**
|
|
36653
36733
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
36654
36734
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
36735
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
36736
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-appendTo)
|
|
36655
36737
|
*/
|
|
36656
36738
|
appendTo?: HTMLElement|string
|
|
36657
36739
|
/**
|
|
@@ -36854,10 +36936,14 @@ type ContainerConfig = {
|
|
|
36854
36936
|
inputFieldAlign?: 'start'|'end'
|
|
36855
36937
|
/**
|
|
36856
36938
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
36939
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
36940
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-insertBefore)
|
|
36857
36941
|
*/
|
|
36858
36942
|
insertBefore?: HTMLElement|string
|
|
36859
36943
|
/**
|
|
36860
36944
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
36945
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
36946
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Container#config-insertFirst)
|
|
36861
36947
|
*/
|
|
36862
36948
|
insertFirst?: HTMLElement|string
|
|
36863
36949
|
/**
|
|
@@ -37813,6 +37899,8 @@ type DateFieldConfig = {
|
|
|
37813
37899
|
/**
|
|
37814
37900
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
37815
37901
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
37902
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
37903
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateField#config-appendTo)
|
|
37816
37904
|
*/
|
|
37817
37905
|
appendTo?: HTMLElement|string
|
|
37818
37906
|
/**
|
|
@@ -38077,10 +38165,14 @@ type DateFieldConfig = {
|
|
|
38077
38165
|
inputWidth?: string|number
|
|
38078
38166
|
/**
|
|
38079
38167
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
38168
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
38169
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateField#config-insertBefore)
|
|
38080
38170
|
*/
|
|
38081
38171
|
insertBefore?: HTMLElement|string
|
|
38082
38172
|
/**
|
|
38083
38173
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
38174
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
38175
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateField#config-insertFirst)
|
|
38084
38176
|
*/
|
|
38085
38177
|
insertFirst?: HTMLElement|string
|
|
38086
38178
|
/**
|
|
@@ -39156,6 +39248,8 @@ type DatePickerConfig = {
|
|
|
39156
39248
|
/**
|
|
39157
39249
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
39158
39250
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
39251
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
39252
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-appendTo)
|
|
39159
39253
|
*/
|
|
39160
39254
|
appendTo?: HTMLElement|string
|
|
39161
39255
|
/**
|
|
@@ -39501,10 +39595,14 @@ type DatePickerConfig = {
|
|
|
39501
39595
|
inputFieldAlign?: 'start'|'end'
|
|
39502
39596
|
/**
|
|
39503
39597
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
39598
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
39599
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-insertBefore)
|
|
39504
39600
|
*/
|
|
39505
39601
|
insertBefore?: HTMLElement|string
|
|
39506
39602
|
/**
|
|
39507
39603
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
39604
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
39605
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DatePicker#config-insertFirst)
|
|
39508
39606
|
*/
|
|
39509
39607
|
insertFirst?: HTMLElement|string
|
|
39510
39608
|
/**
|
|
@@ -40582,6 +40680,8 @@ type DateRangeFieldConfig = {
|
|
|
40582
40680
|
/**
|
|
40583
40681
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
40584
40682
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
40683
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40684
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateRangeField#config-appendTo)
|
|
40585
40685
|
*/
|
|
40586
40686
|
appendTo?: HTMLElement|string
|
|
40587
40687
|
/**
|
|
@@ -40868,10 +40968,14 @@ type DateRangeFieldConfig = {
|
|
|
40868
40968
|
inputWidth?: string|number
|
|
40869
40969
|
/**
|
|
40870
40970
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
40971
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40972
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateRangeField#config-insertBefore)
|
|
40871
40973
|
*/
|
|
40872
40974
|
insertBefore?: HTMLElement|string
|
|
40873
40975
|
/**
|
|
40874
40976
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
40977
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
40978
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateRangeField#config-insertFirst)
|
|
40875
40979
|
*/
|
|
40876
40980
|
insertFirst?: HTMLElement|string
|
|
40877
40981
|
/**
|
|
@@ -41816,6 +41920,8 @@ type DateRangePickerConfig = {
|
|
|
41816
41920
|
/**
|
|
41817
41921
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
41818
41922
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
41923
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41924
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateRangePicker#config-appendTo)
|
|
41819
41925
|
*/
|
|
41820
41926
|
appendTo?: HTMLElement|string
|
|
41821
41927
|
/**
|
|
@@ -42162,10 +42268,14 @@ type DateRangePickerConfig = {
|
|
|
42162
42268
|
inputFieldAlign?: 'start'|'end'
|
|
42163
42269
|
/**
|
|
42164
42270
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
42271
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42272
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateRangePicker#config-insertBefore)
|
|
42165
42273
|
*/
|
|
42166
42274
|
insertBefore?: HTMLElement|string
|
|
42167
42275
|
/**
|
|
42168
42276
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
42277
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42278
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateRangePicker#config-insertFirst)
|
|
42169
42279
|
*/
|
|
42170
42280
|
insertFirst?: HTMLElement|string
|
|
42171
42281
|
/**
|
|
@@ -43182,6 +43292,8 @@ type DateTimeFieldConfig = {
|
|
|
43182
43292
|
/**
|
|
43183
43293
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
43184
43294
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
43295
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43296
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateTimeField#config-appendTo)
|
|
43185
43297
|
*/
|
|
43186
43298
|
appendTo?: HTMLElement|string
|
|
43187
43299
|
/**
|
|
@@ -43422,10 +43534,14 @@ type DateTimeFieldConfig = {
|
|
|
43422
43534
|
inputTag?: string
|
|
43423
43535
|
/**
|
|
43424
43536
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
43537
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43538
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateTimeField#config-insertBefore)
|
|
43425
43539
|
*/
|
|
43426
43540
|
insertBefore?: HTMLElement|string
|
|
43427
43541
|
/**
|
|
43428
43542
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
43543
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
43544
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DateTimeField#config-insertFirst)
|
|
43429
43545
|
*/
|
|
43430
43546
|
insertFirst?: HTMLElement|string
|
|
43431
43547
|
/**
|
|
@@ -44285,6 +44401,8 @@ type DemoCodeEditorConfig = {
|
|
|
44285
44401
|
/**
|
|
44286
44402
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
44287
44403
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
44404
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44405
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DemoCodeEditor#config-appendTo)
|
|
44288
44406
|
*/
|
|
44289
44407
|
appendTo?: HTMLElement|string
|
|
44290
44408
|
/**
|
|
@@ -44549,10 +44667,14 @@ type DemoCodeEditorConfig = {
|
|
|
44549
44667
|
inputFieldAlign?: 'start'|'end'
|
|
44550
44668
|
/**
|
|
44551
44669
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
44670
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44671
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DemoCodeEditor#config-insertBefore)
|
|
44552
44672
|
*/
|
|
44553
44673
|
insertBefore?: HTMLElement|string
|
|
44554
44674
|
/**
|
|
44555
44675
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
44676
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
44677
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DemoCodeEditor#config-insertFirst)
|
|
44556
44678
|
*/
|
|
44557
44679
|
insertFirst?: HTMLElement|string
|
|
44558
44680
|
/**
|
|
@@ -45087,7 +45209,7 @@ export class DemoCodeEditor extends CodeEditor {
|
|
|
45087
45209
|
/**
|
|
45088
45210
|
* Returns default monaco code path
|
|
45089
45211
|
*/
|
|
45090
|
-
static monacoCodePath: string|undefined
|
|
45212
|
+
static readonly monacoCodePath: string|undefined
|
|
45091
45213
|
/**
|
|
45092
45214
|
* Identifies an object as an instance of [DemoCodeEditor](https://bryntum.com/products/scheduler/docs/api/Core/widget/DemoCodeEditor) class, or subclass thereof.
|
|
45093
45215
|
*/
|
|
@@ -45426,6 +45548,8 @@ type DemoHeaderConfig = {
|
|
|
45426
45548
|
/**
|
|
45427
45549
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45428
45550
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
45551
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45552
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DemoHeader#config-appendTo)
|
|
45429
45553
|
*/
|
|
45430
45554
|
appendTo?: HTMLElement|string
|
|
45431
45555
|
/**
|
|
@@ -45628,6 +45752,8 @@ type DemoHeaderConfig = {
|
|
|
45628
45752
|
inputFieldAlign?: 'start'|'end'
|
|
45629
45753
|
/**
|
|
45630
45754
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
45755
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45756
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DemoHeader#config-insertBefore)
|
|
45631
45757
|
*/
|
|
45632
45758
|
insertBefore?: HTMLElement|string
|
|
45633
45759
|
/**
|
|
@@ -46438,6 +46564,8 @@ type DisplayFieldConfig = {
|
|
|
46438
46564
|
/**
|
|
46439
46565
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
46440
46566
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
46567
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46568
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DisplayField#config-appendTo)
|
|
46441
46569
|
*/
|
|
46442
46570
|
appendTo?: HTMLElement|string
|
|
46443
46571
|
/**
|
|
@@ -46697,10 +46825,14 @@ type DisplayFieldConfig = {
|
|
|
46697
46825
|
inputWidth?: string|number
|
|
46698
46826
|
/**
|
|
46699
46827
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
46828
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46829
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DisplayField#config-insertBefore)
|
|
46700
46830
|
*/
|
|
46701
46831
|
insertBefore?: HTMLElement|string
|
|
46702
46832
|
/**
|
|
46703
46833
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
46834
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
46835
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DisplayField#config-insertFirst)
|
|
46704
46836
|
*/
|
|
46705
46837
|
insertFirst?: HTMLElement|string
|
|
46706
46838
|
/**
|
|
@@ -47561,6 +47693,8 @@ type DurationFieldConfig = {
|
|
|
47561
47693
|
/**
|
|
47562
47694
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
47563
47695
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
47696
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47697
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DurationField#config-appendTo)
|
|
47564
47698
|
*/
|
|
47565
47699
|
appendTo?: HTMLElement|string
|
|
47566
47700
|
/**
|
|
@@ -47824,10 +47958,14 @@ type DurationFieldConfig = {
|
|
|
47824
47958
|
inputWidth?: string|number
|
|
47825
47959
|
/**
|
|
47826
47960
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
47961
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47962
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DurationField#config-insertBefore)
|
|
47827
47963
|
*/
|
|
47828
47964
|
insertBefore?: HTMLElement|string
|
|
47829
47965
|
/**
|
|
47830
47966
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
47967
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47968
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/DurationField#config-insertFirst)
|
|
47831
47969
|
*/
|
|
47832
47970
|
insertFirst?: HTMLElement|string
|
|
47833
47971
|
/**
|
|
@@ -48861,6 +48999,8 @@ type EditorConfig = {
|
|
|
48861
48999
|
/**
|
|
48862
49000
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
48863
49001
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
49002
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49003
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Editor#config-appendTo)
|
|
48864
49004
|
*/
|
|
48865
49005
|
appendTo?: HTMLElement|string
|
|
48866
49006
|
/**
|
|
@@ -49102,10 +49242,14 @@ type EditorConfig = {
|
|
|
49102
49242
|
inputFieldAlign?: 'start'|'end'
|
|
49103
49243
|
/**
|
|
49104
49244
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
49245
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49246
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Editor#config-insertBefore)
|
|
49105
49247
|
*/
|
|
49106
49248
|
insertBefore?: HTMLElement|string
|
|
49107
49249
|
/**
|
|
49108
49250
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
49251
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
49252
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Editor#config-insertFirst)
|
|
49109
49253
|
*/
|
|
49110
49254
|
insertFirst?: HTMLElement|string
|
|
49111
49255
|
/**
|
|
@@ -50108,6 +50252,8 @@ type FieldConfig = {
|
|
|
50108
50252
|
/**
|
|
50109
50253
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
50110
50254
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
50255
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50256
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-appendTo)
|
|
50111
50257
|
*/
|
|
50112
50258
|
appendTo?: HTMLElement|string
|
|
50113
50259
|
/**
|
|
@@ -50367,10 +50513,14 @@ type FieldConfig = {
|
|
|
50367
50513
|
inputWidth?: string|number
|
|
50368
50514
|
/**
|
|
50369
50515
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
50516
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50517
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-insertBefore)
|
|
50370
50518
|
*/
|
|
50371
50519
|
insertBefore?: HTMLElement|string
|
|
50372
50520
|
/**
|
|
50373
50521
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
50522
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
50523
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Field#config-insertFirst)
|
|
50374
50524
|
*/
|
|
50375
50525
|
insertFirst?: HTMLElement|string
|
|
50376
50526
|
/**
|
|
@@ -51333,6 +51483,8 @@ type FieldContainerConfig = {
|
|
|
51333
51483
|
/**
|
|
51334
51484
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
51335
51485
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
51486
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51487
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldContainer#config-appendTo)
|
|
51336
51488
|
*/
|
|
51337
51489
|
appendTo?: HTMLElement|string
|
|
51338
51490
|
/**
|
|
@@ -51540,10 +51692,14 @@ type FieldContainerConfig = {
|
|
|
51540
51692
|
inputFieldAlign?: 'start'|'end'
|
|
51541
51693
|
/**
|
|
51542
51694
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
51695
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51696
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldContainer#config-insertBefore)
|
|
51543
51697
|
*/
|
|
51544
51698
|
insertBefore?: HTMLElement|string
|
|
51545
51699
|
/**
|
|
51546
51700
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
51701
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
51702
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldContainer#config-insertFirst)
|
|
51547
51703
|
*/
|
|
51548
51704
|
insertFirst?: HTMLElement|string
|
|
51549
51705
|
/**
|
|
@@ -52307,6 +52463,8 @@ type FieldFilterPickerConfig = {
|
|
|
52307
52463
|
/**
|
|
52308
52464
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
52309
52465
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
52466
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52467
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldFilterPicker#config-appendTo)
|
|
52310
52468
|
*/
|
|
52311
52469
|
appendTo?: HTMLElement|string
|
|
52312
52470
|
/**
|
|
@@ -52533,10 +52691,14 @@ type FieldFilterPickerConfig = {
|
|
|
52533
52691
|
inputFieldAlign?: 'start'|'end'
|
|
52534
52692
|
/**
|
|
52535
52693
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
52694
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52695
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldFilterPicker#config-insertBefore)
|
|
52536
52696
|
*/
|
|
52537
52697
|
insertBefore?: HTMLElement|string
|
|
52538
52698
|
/**
|
|
52539
52699
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
52700
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
52701
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldFilterPicker#config-insertFirst)
|
|
52540
52702
|
*/
|
|
52541
52703
|
insertFirst?: HTMLElement|string
|
|
52542
52704
|
/**
|
|
@@ -53377,6 +53539,8 @@ type FieldFilterPickerGroupConfig = {
|
|
|
53377
53539
|
/**
|
|
53378
53540
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
53379
53541
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
53542
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
53543
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldFilterPickerGroup#config-appendTo)
|
|
53380
53544
|
*/
|
|
53381
53545
|
appendTo?: HTMLElement|string
|
|
53382
53546
|
/**
|
|
@@ -53621,10 +53785,14 @@ type FieldFilterPickerGroupConfig = {
|
|
|
53621
53785
|
inputFieldAlign?: 'start'|'end'
|
|
53622
53786
|
/**
|
|
53623
53787
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
53788
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
53789
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldFilterPickerGroup#config-insertBefore)
|
|
53624
53790
|
*/
|
|
53625
53791
|
insertBefore?: HTMLElement|string
|
|
53626
53792
|
/**
|
|
53627
53793
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
53794
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
53795
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldFilterPickerGroup#config-insertFirst)
|
|
53628
53796
|
*/
|
|
53629
53797
|
insertFirst?: HTMLElement|string
|
|
53630
53798
|
/**
|
|
@@ -54522,6 +54690,8 @@ type FieldSetConfig = {
|
|
|
54522
54690
|
/**
|
|
54523
54691
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
54524
54692
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
54693
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
54694
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldSet#config-appendTo)
|
|
54525
54695
|
*/
|
|
54526
54696
|
appendTo?: HTMLElement|string
|
|
54527
54697
|
/**
|
|
@@ -54783,10 +54953,14 @@ type FieldSetConfig = {
|
|
|
54783
54953
|
inputFieldAlign?: 'start'|'end'
|
|
54784
54954
|
/**
|
|
54785
54955
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
54956
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
54957
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldSet#config-insertBefore)
|
|
54786
54958
|
*/
|
|
54787
54959
|
insertBefore?: HTMLElement|string
|
|
54788
54960
|
/**
|
|
54789
54961
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
54962
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
54963
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FieldSet#config-insertFirst)
|
|
54790
54964
|
*/
|
|
54791
54965
|
insertFirst?: HTMLElement|string
|
|
54792
54966
|
/**
|
|
@@ -55722,6 +55896,8 @@ type FileFieldConfig = {
|
|
|
55722
55896
|
/**
|
|
55723
55897
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
55724
55898
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
55899
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
55900
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FileField#config-appendTo)
|
|
55725
55901
|
*/
|
|
55726
55902
|
appendTo?: HTMLElement|string
|
|
55727
55903
|
/**
|
|
@@ -55981,10 +56157,14 @@ type FileFieldConfig = {
|
|
|
55981
56157
|
inputWidth?: string|number
|
|
55982
56158
|
/**
|
|
55983
56159
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
56160
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56161
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FileField#config-insertBefore)
|
|
55984
56162
|
*/
|
|
55985
56163
|
insertBefore?: HTMLElement|string
|
|
55986
56164
|
/**
|
|
55987
56165
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
56166
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56167
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FileField#config-insertFirst)
|
|
55988
56168
|
*/
|
|
55989
56169
|
insertFirst?: HTMLElement|string
|
|
55990
56170
|
/**
|
|
@@ -56804,6 +56984,8 @@ type FilePickerConfig = {
|
|
|
56804
56984
|
/**
|
|
56805
56985
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
56806
56986
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
56987
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56988
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FilePicker#config-appendTo)
|
|
56807
56989
|
*/
|
|
56808
56990
|
appendTo?: HTMLElement|string
|
|
56809
56991
|
/**
|
|
@@ -57014,10 +57196,14 @@ type FilePickerConfig = {
|
|
|
57014
57196
|
inputFieldAlign?: 'start'|'end'
|
|
57015
57197
|
/**
|
|
57016
57198
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
57199
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57200
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FilePicker#config-insertBefore)
|
|
57017
57201
|
*/
|
|
57018
57202
|
insertBefore?: HTMLElement|string
|
|
57019
57203
|
/**
|
|
57020
57204
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
57205
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57206
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FilePicker#config-insertFirst)
|
|
57021
57207
|
*/
|
|
57022
57208
|
insertFirst?: HTMLElement|string
|
|
57023
57209
|
/**
|
|
@@ -57862,6 +58048,8 @@ type FilterFieldConfig = {
|
|
|
57862
58048
|
/**
|
|
57863
58049
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
57864
58050
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
58051
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
58052
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FilterField#config-appendTo)
|
|
57865
58053
|
*/
|
|
57866
58054
|
appendTo?: HTMLElement|string
|
|
57867
58055
|
/**
|
|
@@ -58140,10 +58328,14 @@ type FilterFieldConfig = {
|
|
|
58140
58328
|
inputWidth?: string|number
|
|
58141
58329
|
/**
|
|
58142
58330
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
58331
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
58332
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FilterField#config-insertBefore)
|
|
58143
58333
|
*/
|
|
58144
58334
|
insertBefore?: HTMLElement|string
|
|
58145
58335
|
/**
|
|
58146
58336
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
58337
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
58338
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/FilterField#config-insertFirst)
|
|
58147
58339
|
*/
|
|
58148
58340
|
insertFirst?: HTMLElement|string
|
|
58149
58341
|
/**
|
|
@@ -59028,6 +59220,8 @@ type HintConfig = {
|
|
|
59028
59220
|
/**
|
|
59029
59221
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
59030
59222
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
59223
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
59224
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Hint#config-appendTo)
|
|
59031
59225
|
*/
|
|
59032
59226
|
appendTo?: HTMLElement|string
|
|
59033
59227
|
/**
|
|
@@ -59299,10 +59493,14 @@ type HintConfig = {
|
|
|
59299
59493
|
inputFieldAlign?: 'start'|'end'
|
|
59300
59494
|
/**
|
|
59301
59495
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
59496
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
59497
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Hint#config-insertBefore)
|
|
59302
59498
|
*/
|
|
59303
59499
|
insertBefore?: HTMLElement|string
|
|
59304
59500
|
/**
|
|
59305
59501
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
59502
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
59503
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Hint#config-insertFirst)
|
|
59306
59504
|
*/
|
|
59307
59505
|
insertFirst?: HTMLElement|string
|
|
59308
59506
|
/**
|
|
@@ -60176,6 +60374,8 @@ type LabelConfig = {
|
|
|
60176
60374
|
/**
|
|
60177
60375
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
60178
60376
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
60377
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60378
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Label#config-appendTo)
|
|
60179
60379
|
*/
|
|
60180
60380
|
appendTo?: HTMLElement|string
|
|
60181
60381
|
/**
|
|
@@ -60345,10 +60545,14 @@ type LabelConfig = {
|
|
|
60345
60545
|
ignoreParentReadOnly?: boolean
|
|
60346
60546
|
/**
|
|
60347
60547
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
60548
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60549
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Label#config-insertBefore)
|
|
60348
60550
|
*/
|
|
60349
60551
|
insertBefore?: HTMLElement|string
|
|
60350
60552
|
/**
|
|
60351
60553
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
60554
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60555
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Label#config-insertFirst)
|
|
60352
60556
|
*/
|
|
60353
60557
|
insertFirst?: HTMLElement|string
|
|
60354
60558
|
/**
|
|
@@ -61080,6 +61284,8 @@ type ListConfig = {
|
|
|
61080
61284
|
/**
|
|
61081
61285
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
61082
61286
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
61287
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
61288
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-appendTo)
|
|
61083
61289
|
*/
|
|
61084
61290
|
appendTo?: HTMLElement|string
|
|
61085
61291
|
/**
|
|
@@ -61287,10 +61493,14 @@ type ListConfig = {
|
|
|
61287
61493
|
ignoreParentReadOnly?: boolean
|
|
61288
61494
|
/**
|
|
61289
61495
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
61496
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
61497
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-insertBefore)
|
|
61290
61498
|
*/
|
|
61291
61499
|
insertBefore?: HTMLElement|string
|
|
61292
61500
|
/**
|
|
61293
61501
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
61502
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
61503
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/List#config-insertFirst)
|
|
61294
61504
|
*/
|
|
61295
61505
|
insertFirst?: HTMLElement|string
|
|
61296
61506
|
/**
|
|
@@ -62146,6 +62356,8 @@ type MaskConfig = {
|
|
|
62146
62356
|
/**
|
|
62147
62357
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
62148
62358
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
62359
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62360
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask#config-appendTo)
|
|
62149
62361
|
*/
|
|
62150
62362
|
appendTo?: HTMLElement|string
|
|
62151
62363
|
/**
|
|
@@ -62324,10 +62536,14 @@ type MaskConfig = {
|
|
|
62324
62536
|
ignoreParentReadOnly?: boolean
|
|
62325
62537
|
/**
|
|
62326
62538
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
62539
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62540
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask#config-insertBefore)
|
|
62327
62541
|
*/
|
|
62328
62542
|
insertBefore?: HTMLElement|string
|
|
62329
62543
|
/**
|
|
62330
62544
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
62545
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62546
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Mask#config-insertFirst)
|
|
62331
62547
|
*/
|
|
62332
62548
|
insertFirst?: HTMLElement|string
|
|
62333
62549
|
/**
|
|
@@ -63156,6 +63372,8 @@ type MenuConfig = {
|
|
|
63156
63372
|
/**
|
|
63157
63373
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
63158
63374
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
63375
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
63376
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Menu#config-appendTo)
|
|
63159
63377
|
*/
|
|
63160
63378
|
appendTo?: HTMLElement|string
|
|
63161
63379
|
/**
|
|
@@ -63449,10 +63667,14 @@ type MenuConfig = {
|
|
|
63449
63667
|
inputFieldAlign?: 'start'|'end'
|
|
63450
63668
|
/**
|
|
63451
63669
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
63670
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
63671
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Menu#config-insertBefore)
|
|
63452
63672
|
*/
|
|
63453
63673
|
insertBefore?: HTMLElement|string
|
|
63454
63674
|
/**
|
|
63455
63675
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
63676
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
63677
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Menu#config-insertFirst)
|
|
63456
63678
|
*/
|
|
63457
63679
|
insertFirst?: HTMLElement|string
|
|
63458
63680
|
/**
|
|
@@ -64406,6 +64628,8 @@ type MenuItemConfig = {
|
|
|
64406
64628
|
/**
|
|
64407
64629
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
64408
64630
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
64631
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
64632
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MenuItem#config-appendTo)
|
|
64409
64633
|
*/
|
|
64410
64634
|
appendTo?: HTMLElement|string
|
|
64411
64635
|
/**
|
|
@@ -64598,10 +64822,14 @@ type MenuItemConfig = {
|
|
|
64598
64822
|
ignoreParentReadOnly?: boolean
|
|
64599
64823
|
/**
|
|
64600
64824
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
64825
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
64826
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MenuItem#config-insertBefore)
|
|
64601
64827
|
*/
|
|
64602
64828
|
insertBefore?: HTMLElement|string
|
|
64603
64829
|
/**
|
|
64604
64830
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
64831
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
64832
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MenuItem#config-insertFirst)
|
|
64605
64833
|
*/
|
|
64606
64834
|
insertFirst?: HTMLElement|string
|
|
64607
64835
|
/**
|
|
@@ -65859,6 +66087,8 @@ type MonthPickerConfig = {
|
|
|
65859
66087
|
/**
|
|
65860
66088
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
65861
66089
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
66090
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
66091
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MonthPicker#config-appendTo)
|
|
65862
66092
|
*/
|
|
65863
66093
|
appendTo?: HTMLElement|string
|
|
65864
66094
|
/**
|
|
@@ -66114,10 +66344,14 @@ type MonthPickerConfig = {
|
|
|
66114
66344
|
inputFieldAlign?: 'start'|'end'
|
|
66115
66345
|
/**
|
|
66116
66346
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
66347
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
66348
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MonthPicker#config-insertBefore)
|
|
66117
66349
|
*/
|
|
66118
66350
|
insertBefore?: HTMLElement|string
|
|
66119
66351
|
/**
|
|
66120
66352
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
66353
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
66354
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MonthPicker#config-insertFirst)
|
|
66121
66355
|
*/
|
|
66122
66356
|
insertFirst?: HTMLElement|string
|
|
66123
66357
|
/**
|
|
@@ -67069,6 +67303,8 @@ type MultiDatePickerConfig = {
|
|
|
67069
67303
|
/**
|
|
67070
67304
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
67071
67305
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
67306
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
67307
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MultiDatePicker#config-appendTo)
|
|
67072
67308
|
*/
|
|
67073
67309
|
appendTo?: HTMLElement|string
|
|
67074
67310
|
/**
|
|
@@ -67390,10 +67626,14 @@ type MultiDatePickerConfig = {
|
|
|
67390
67626
|
inputFieldAlign?: 'start'|'end'
|
|
67391
67627
|
/**
|
|
67392
67628
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
67629
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
67630
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MultiDatePicker#config-insertBefore)
|
|
67393
67631
|
*/
|
|
67394
67632
|
insertBefore?: HTMLElement|string
|
|
67395
67633
|
/**
|
|
67396
67634
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
67635
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
67636
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/MultiDatePicker#config-insertFirst)
|
|
67397
67637
|
*/
|
|
67398
67638
|
insertFirst?: HTMLElement|string
|
|
67399
67639
|
/**
|
|
@@ -68406,6 +68646,8 @@ type NumberFieldConfig = {
|
|
|
68406
68646
|
/**
|
|
68407
68647
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
68408
68648
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
68649
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
68650
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/NumberField#config-appendTo)
|
|
68409
68651
|
*/
|
|
68410
68652
|
appendTo?: HTMLElement|string
|
|
68411
68653
|
/**
|
|
@@ -68680,10 +68922,14 @@ type NumberFieldConfig = {
|
|
|
68680
68922
|
inputWidth?: string|number
|
|
68681
68923
|
/**
|
|
68682
68924
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
68925
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
68926
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/NumberField#config-insertBefore)
|
|
68683
68927
|
*/
|
|
68684
68928
|
insertBefore?: HTMLElement|string
|
|
68685
68929
|
/**
|
|
68686
68930
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
68931
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
68932
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/NumberField#config-insertFirst)
|
|
68687
68933
|
*/
|
|
68688
68934
|
insertFirst?: HTMLElement|string
|
|
68689
68935
|
/**
|
|
@@ -69572,6 +69818,8 @@ type PagingToolbarConfig = {
|
|
|
69572
69818
|
/**
|
|
69573
69819
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
69574
69820
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
69821
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
69822
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PagingToolbar#config-appendTo)
|
|
69575
69823
|
*/
|
|
69576
69824
|
appendTo?: HTMLElement|string
|
|
69577
69825
|
/**
|
|
@@ -69778,10 +70026,14 @@ type PagingToolbarConfig = {
|
|
|
69778
70026
|
inputFieldAlign?: 'start'|'end'
|
|
69779
70027
|
/**
|
|
69780
70028
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
70029
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
70030
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PagingToolbar#config-insertBefore)
|
|
69781
70031
|
*/
|
|
69782
70032
|
insertBefore?: HTMLElement|string
|
|
69783
70033
|
/**
|
|
69784
70034
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
70035
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
70036
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PagingToolbar#config-insertFirst)
|
|
69785
70037
|
*/
|
|
69786
70038
|
insertFirst?: HTMLElement|string
|
|
69787
70039
|
/**
|
|
@@ -70636,6 +70888,8 @@ type PanelConfig = {
|
|
|
70636
70888
|
/**
|
|
70637
70889
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
70638
70890
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
70891
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
70892
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-appendTo)
|
|
70639
70893
|
*/
|
|
70640
70894
|
appendTo?: HTMLElement|string
|
|
70641
70895
|
/**
|
|
@@ -70891,10 +71145,14 @@ type PanelConfig = {
|
|
|
70891
71145
|
inputFieldAlign?: 'start'|'end'
|
|
70892
71146
|
/**
|
|
70893
71147
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
71148
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
71149
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-insertBefore)
|
|
70894
71150
|
*/
|
|
70895
71151
|
insertBefore?: HTMLElement|string
|
|
70896
71152
|
/**
|
|
70897
71153
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
71154
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
71155
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#config-insertFirst)
|
|
70898
71156
|
*/
|
|
70899
71157
|
insertFirst?: HTMLElement|string
|
|
70900
71158
|
/**
|
|
@@ -71912,6 +72170,8 @@ type PasswordFieldConfig = {
|
|
|
71912
72170
|
/**
|
|
71913
72171
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
71914
72172
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
72173
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
72174
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PasswordField#config-appendTo)
|
|
71915
72175
|
*/
|
|
71916
72176
|
appendTo?: HTMLElement|string
|
|
71917
72177
|
/**
|
|
@@ -72171,10 +72431,14 @@ type PasswordFieldConfig = {
|
|
|
72171
72431
|
inputWidth?: string|number
|
|
72172
72432
|
/**
|
|
72173
72433
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
72434
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
72435
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PasswordField#config-insertBefore)
|
|
72174
72436
|
*/
|
|
72175
72437
|
insertBefore?: HTMLElement|string
|
|
72176
72438
|
/**
|
|
72177
72439
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
72440
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
72441
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PasswordField#config-insertFirst)
|
|
72178
72442
|
*/
|
|
72179
72443
|
insertFirst?: HTMLElement|string
|
|
72180
72444
|
/**
|
|
@@ -73019,6 +73283,8 @@ type PickerFieldConfig = {
|
|
|
73019
73283
|
/**
|
|
73020
73284
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
73021
73285
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
73286
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
73287
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PickerField#config-appendTo)
|
|
73022
73288
|
*/
|
|
73023
73289
|
appendTo?: HTMLElement|string
|
|
73024
73290
|
/**
|
|
@@ -73279,10 +73545,14 @@ type PickerFieldConfig = {
|
|
|
73279
73545
|
inputWidth?: string|number
|
|
73280
73546
|
/**
|
|
73281
73547
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
73548
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
73549
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PickerField#config-insertBefore)
|
|
73282
73550
|
*/
|
|
73283
73551
|
insertBefore?: HTMLElement|string
|
|
73284
73552
|
/**
|
|
73285
73553
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
73554
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
73555
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/PickerField#config-insertFirst)
|
|
73286
73556
|
*/
|
|
73287
73557
|
insertFirst?: HTMLElement|string
|
|
73288
73558
|
/**
|
|
@@ -74181,6 +74451,8 @@ type PopupConfig = {
|
|
|
74181
74451
|
/**
|
|
74182
74452
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
74183
74453
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
74454
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
74455
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Popup#config-appendTo)
|
|
74184
74456
|
*/
|
|
74185
74457
|
appendTo?: HTMLElement|string
|
|
74186
74458
|
/**
|
|
@@ -74470,10 +74742,14 @@ type PopupConfig = {
|
|
|
74470
74742
|
inputFieldAlign?: 'start'|'end'
|
|
74471
74743
|
/**
|
|
74472
74744
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
74745
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
74746
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Popup#config-insertBefore)
|
|
74473
74747
|
*/
|
|
74474
74748
|
insertBefore?: HTMLElement|string
|
|
74475
74749
|
/**
|
|
74476
74750
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
74751
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
74752
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Popup#config-insertFirst)
|
|
74477
74753
|
*/
|
|
74478
74754
|
insertFirst?: HTMLElement|string
|
|
74479
74755
|
/**
|
|
@@ -75362,6 +75638,8 @@ type ProgressBarConfig = {
|
|
|
75362
75638
|
/**
|
|
75363
75639
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
75364
75640
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
75641
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75642
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ProgressBar#config-appendTo)
|
|
75365
75643
|
*/
|
|
75366
75644
|
appendTo?: HTMLElement|string
|
|
75367
75645
|
/**
|
|
@@ -75529,10 +75807,14 @@ type ProgressBarConfig = {
|
|
|
75529
75807
|
ignoreParentReadOnly?: boolean
|
|
75530
75808
|
/**
|
|
75531
75809
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
75810
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75811
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ProgressBar#config-insertBefore)
|
|
75532
75812
|
*/
|
|
75533
75813
|
insertBefore?: HTMLElement|string
|
|
75534
75814
|
/**
|
|
75535
75815
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
75816
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
75817
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/ProgressBar#config-insertFirst)
|
|
75536
75818
|
*/
|
|
75537
75819
|
insertFirst?: HTMLElement|string
|
|
75538
75820
|
/**
|
|
@@ -76341,6 +76623,8 @@ type RadioConfig = {
|
|
|
76341
76623
|
/**
|
|
76342
76624
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
76343
76625
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
76626
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
76627
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Radio#config-appendTo)
|
|
76344
76628
|
*/
|
|
76345
76629
|
appendTo?: HTMLElement|string
|
|
76346
76630
|
/**
|
|
@@ -76602,10 +76886,14 @@ type RadioConfig = {
|
|
|
76602
76886
|
inputWidth?: string|number
|
|
76603
76887
|
/**
|
|
76604
76888
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
76889
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
76890
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Radio#config-insertBefore)
|
|
76605
76891
|
*/
|
|
76606
76892
|
insertBefore?: HTMLElement|string
|
|
76607
76893
|
/**
|
|
76608
76894
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
76895
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
76896
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Radio#config-insertFirst)
|
|
76609
76897
|
*/
|
|
76610
76898
|
insertFirst?: HTMLElement|string
|
|
76611
76899
|
/**
|
|
@@ -77476,6 +77764,8 @@ type RadioGroupConfig = {
|
|
|
77476
77764
|
/**
|
|
77477
77765
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
77478
77766
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
77767
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
77768
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/RadioGroup#config-appendTo)
|
|
77479
77769
|
*/
|
|
77480
77770
|
appendTo?: HTMLElement|string
|
|
77481
77771
|
/**
|
|
@@ -77742,10 +78032,14 @@ type RadioGroupConfig = {
|
|
|
77742
78032
|
inputFieldAlign?: 'start'|'end'
|
|
77743
78033
|
/**
|
|
77744
78034
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
78035
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
78036
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/RadioGroup#config-insertBefore)
|
|
77745
78037
|
*/
|
|
77746
78038
|
insertBefore?: HTMLElement|string
|
|
77747
78039
|
/**
|
|
77748
78040
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
78041
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
78042
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/RadioGroup#config-insertFirst)
|
|
77749
78043
|
*/
|
|
77750
78044
|
insertFirst?: HTMLElement|string
|
|
77751
78045
|
/**
|
|
@@ -78683,6 +78977,8 @@ type RichTextFieldConfig = {
|
|
|
78683
78977
|
/**
|
|
78684
78978
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
78685
78979
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
78980
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
78981
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/RichTextField#config-appendTo)
|
|
78686
78982
|
*/
|
|
78687
78983
|
appendTo?: HTMLElement|string
|
|
78688
78984
|
/**
|
|
@@ -78942,10 +79238,14 @@ type RichTextFieldConfig = {
|
|
|
78942
79238
|
inputWidth?: string|number
|
|
78943
79239
|
/**
|
|
78944
79240
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
79241
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
79242
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/RichTextField#config-insertBefore)
|
|
78945
79243
|
*/
|
|
78946
79244
|
insertBefore?: HTMLElement|string
|
|
78947
79245
|
/**
|
|
78948
79246
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
79247
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
79248
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/RichTextField#config-insertFirst)
|
|
78949
79249
|
*/
|
|
78950
79250
|
insertFirst?: HTMLElement|string
|
|
78951
79251
|
/**
|
|
@@ -79831,6 +80131,8 @@ type SlideToggleConfig = {
|
|
|
79831
80131
|
/**
|
|
79832
80132
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
79833
80133
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
80134
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
80135
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/SlideToggle#config-appendTo)
|
|
79834
80136
|
*/
|
|
79835
80137
|
appendTo?: HTMLElement|string
|
|
79836
80138
|
/**
|
|
@@ -80092,10 +80394,14 @@ type SlideToggleConfig = {
|
|
|
80092
80394
|
inputWidth?: string|number
|
|
80093
80395
|
/**
|
|
80094
80396
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
80397
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
80398
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/SlideToggle#config-insertBefore)
|
|
80095
80399
|
*/
|
|
80096
80400
|
insertBefore?: HTMLElement|string
|
|
80097
80401
|
/**
|
|
80098
80402
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
80403
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
80404
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/SlideToggle#config-insertFirst)
|
|
80099
80405
|
*/
|
|
80100
80406
|
insertFirst?: HTMLElement|string
|
|
80101
80407
|
/**
|
|
@@ -80900,6 +81206,8 @@ type SliderConfig = {
|
|
|
80900
81206
|
/**
|
|
80901
81207
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
80902
81208
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
81209
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
81210
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Slider#config-appendTo)
|
|
80903
81211
|
*/
|
|
80904
81212
|
appendTo?: HTMLElement|string
|
|
80905
81213
|
/**
|
|
@@ -81069,10 +81377,14 @@ type SliderConfig = {
|
|
|
81069
81377
|
ignoreParentReadOnly?: boolean
|
|
81070
81378
|
/**
|
|
81071
81379
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
81380
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
81381
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Slider#config-insertBefore)
|
|
81072
81382
|
*/
|
|
81073
81383
|
insertBefore?: HTMLElement|string
|
|
81074
81384
|
/**
|
|
81075
81385
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
81386
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
81387
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Slider#config-insertFirst)
|
|
81076
81388
|
*/
|
|
81077
81389
|
insertFirst?: HTMLElement|string
|
|
81078
81390
|
/**
|
|
@@ -81895,6 +82207,8 @@ type SplitterConfig = {
|
|
|
81895
82207
|
/**
|
|
81896
82208
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
81897
82209
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
82210
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
82211
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Splitter#config-appendTo)
|
|
81898
82212
|
*/
|
|
81899
82213
|
appendTo?: HTMLElement|string
|
|
81900
82214
|
/**
|
|
@@ -82064,10 +82378,14 @@ type SplitterConfig = {
|
|
|
82064
82378
|
ignoreParentReadOnly?: boolean
|
|
82065
82379
|
/**
|
|
82066
82380
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
82381
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
82382
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Splitter#config-insertBefore)
|
|
82067
82383
|
*/
|
|
82068
82384
|
insertBefore?: HTMLElement|string
|
|
82069
82385
|
/**
|
|
82070
82386
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
82387
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
82388
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Splitter#config-insertFirst)
|
|
82071
82389
|
*/
|
|
82072
82390
|
insertFirst?: HTMLElement|string
|
|
82073
82391
|
/**
|
|
@@ -82853,6 +83171,8 @@ type TabConfig = {
|
|
|
82853
83171
|
/**
|
|
82854
83172
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
82855
83173
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
83174
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
83175
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab#config-appendTo)
|
|
82856
83176
|
*/
|
|
82857
83177
|
appendTo?: HTMLElement|string
|
|
82858
83178
|
/**
|
|
@@ -83048,10 +83368,14 @@ type TabConfig = {
|
|
|
83048
83368
|
ignoreParentReadOnly?: boolean
|
|
83049
83369
|
/**
|
|
83050
83370
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
83371
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
83372
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab#config-insertBefore)
|
|
83051
83373
|
*/
|
|
83052
83374
|
insertBefore?: HTMLElement|string
|
|
83053
83375
|
/**
|
|
83054
83376
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
83377
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
83378
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tab#config-insertFirst)
|
|
83055
83379
|
*/
|
|
83056
83380
|
insertFirst?: HTMLElement|string
|
|
83057
83381
|
/**
|
|
@@ -83890,6 +84214,8 @@ type TabBarConfig = {
|
|
|
83890
84214
|
/**
|
|
83891
84215
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
83892
84216
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
84217
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
84218
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar#config-appendTo)
|
|
83893
84219
|
*/
|
|
83894
84220
|
appendTo?: HTMLElement|string
|
|
83895
84221
|
/**
|
|
@@ -84102,10 +84428,14 @@ type TabBarConfig = {
|
|
|
84102
84428
|
inputFieldAlign?: 'start'|'end'
|
|
84103
84429
|
/**
|
|
84104
84430
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
84431
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
84432
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar#config-insertBefore)
|
|
84105
84433
|
*/
|
|
84106
84434
|
insertBefore?: HTMLElement|string
|
|
84107
84435
|
/**
|
|
84108
84436
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
84437
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
84438
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabBar#config-insertFirst)
|
|
84109
84439
|
*/
|
|
84110
84440
|
insertFirst?: HTMLElement|string
|
|
84111
84441
|
/**
|
|
@@ -85001,6 +85331,8 @@ type TabPanelConfig = {
|
|
|
85001
85331
|
/**
|
|
85002
85332
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
85003
85333
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
85334
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
85335
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel#config-appendTo)
|
|
85004
85336
|
*/
|
|
85005
85337
|
appendTo?: HTMLElement|string
|
|
85006
85338
|
/**
|
|
@@ -85260,10 +85592,14 @@ type TabPanelConfig = {
|
|
|
85260
85592
|
inputFieldAlign?: 'start'|'end'
|
|
85261
85593
|
/**
|
|
85262
85594
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
85595
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
85596
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel#config-insertBefore)
|
|
85263
85597
|
*/
|
|
85264
85598
|
insertBefore?: HTMLElement|string
|
|
85265
85599
|
/**
|
|
85266
85600
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
85601
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
85602
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TabPanel#config-insertFirst)
|
|
85267
85603
|
*/
|
|
85268
85604
|
insertFirst?: HTMLElement|string
|
|
85269
85605
|
/**
|
|
@@ -86230,6 +86566,8 @@ type TextAreaFieldConfig = {
|
|
|
86230
86566
|
/**
|
|
86231
86567
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
86232
86568
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
86569
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
86570
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextAreaField#config-appendTo)
|
|
86233
86571
|
*/
|
|
86234
86572
|
appendTo?: HTMLElement|string
|
|
86235
86573
|
/**
|
|
@@ -86495,10 +86833,14 @@ type TextAreaFieldConfig = {
|
|
|
86495
86833
|
inputWidth?: string|number
|
|
86496
86834
|
/**
|
|
86497
86835
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
86836
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
86837
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextAreaField#config-insertBefore)
|
|
86498
86838
|
*/
|
|
86499
86839
|
insertBefore?: HTMLElement|string
|
|
86500
86840
|
/**
|
|
86501
86841
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
86842
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
86843
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextAreaField#config-insertFirst)
|
|
86502
86844
|
*/
|
|
86503
86845
|
insertFirst?: HTMLElement|string
|
|
86504
86846
|
/**
|
|
@@ -87362,6 +87704,8 @@ type TextAreaPickerFieldConfig = {
|
|
|
87362
87704
|
/**
|
|
87363
87705
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
87364
87706
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
87707
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
87708
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextAreaPickerField#config-appendTo)
|
|
87365
87709
|
*/
|
|
87366
87710
|
appendTo?: HTMLElement|string
|
|
87367
87711
|
/**
|
|
@@ -87618,10 +87962,14 @@ type TextAreaPickerFieldConfig = {
|
|
|
87618
87962
|
inputWidth?: string|number
|
|
87619
87963
|
/**
|
|
87620
87964
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
87965
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
87966
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextAreaPickerField#config-insertBefore)
|
|
87621
87967
|
*/
|
|
87622
87968
|
insertBefore?: HTMLElement|string
|
|
87623
87969
|
/**
|
|
87624
87970
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
87971
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
87972
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextAreaPickerField#config-insertFirst)
|
|
87625
87973
|
*/
|
|
87626
87974
|
insertFirst?: HTMLElement|string
|
|
87627
87975
|
/**
|
|
@@ -88499,6 +88847,8 @@ type TextFieldConfig = {
|
|
|
88499
88847
|
/**
|
|
88500
88848
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
88501
88849
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
88850
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
88851
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextField#config-appendTo)
|
|
88502
88852
|
*/
|
|
88503
88853
|
appendTo?: HTMLElement|string
|
|
88504
88854
|
/**
|
|
@@ -88758,10 +89108,14 @@ type TextFieldConfig = {
|
|
|
88758
89108
|
inputWidth?: string|number
|
|
88759
89109
|
/**
|
|
88760
89110
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
89111
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
89112
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextField#config-insertBefore)
|
|
88761
89113
|
*/
|
|
88762
89114
|
insertBefore?: HTMLElement|string
|
|
88763
89115
|
/**
|
|
88764
89116
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
89117
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
89118
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TextField#config-insertFirst)
|
|
88765
89119
|
*/
|
|
88766
89120
|
insertFirst?: HTMLElement|string
|
|
88767
89121
|
/**
|
|
@@ -89640,6 +89994,8 @@ type TimeFieldConfig = {
|
|
|
89640
89994
|
/**
|
|
89641
89995
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
89642
89996
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
89997
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
89998
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TimeField#config-appendTo)
|
|
89643
89999
|
*/
|
|
89644
90000
|
appendTo?: HTMLElement|string
|
|
89645
90001
|
/**
|
|
@@ -89905,10 +90261,14 @@ type TimeFieldConfig = {
|
|
|
89905
90261
|
inputWidth?: string|number
|
|
89906
90262
|
/**
|
|
89907
90263
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
90264
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
90265
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TimeField#config-insertBefore)
|
|
89908
90266
|
*/
|
|
89909
90267
|
insertBefore?: HTMLElement|string
|
|
89910
90268
|
/**
|
|
89911
90269
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
90270
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
90271
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TimeField#config-insertFirst)
|
|
89912
90272
|
*/
|
|
89913
90273
|
insertFirst?: HTMLElement|string
|
|
89914
90274
|
/**
|
|
@@ -90809,6 +91169,8 @@ type TimePickerConfig = {
|
|
|
90809
91169
|
/**
|
|
90810
91170
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
90811
91171
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
91172
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
91173
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TimePicker#config-appendTo)
|
|
90812
91174
|
*/
|
|
90813
91175
|
appendTo?: HTMLElement|string
|
|
90814
91176
|
/**
|
|
@@ -91016,10 +91378,14 @@ type TimePickerConfig = {
|
|
|
91016
91378
|
inputFieldAlign?: 'start'|'end'
|
|
91017
91379
|
/**
|
|
91018
91380
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
91381
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
91382
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TimePicker#config-insertBefore)
|
|
91019
91383
|
*/
|
|
91020
91384
|
insertBefore?: HTMLElement|string
|
|
91021
91385
|
/**
|
|
91022
91386
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
91387
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
91388
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/TimePicker#config-insertFirst)
|
|
91023
91389
|
*/
|
|
91024
91390
|
insertFirst?: HTMLElement|string
|
|
91025
91391
|
/**
|
|
@@ -91783,6 +92149,8 @@ type ToastConfig = {
|
|
|
91783
92149
|
/**
|
|
91784
92150
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
91785
92151
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
92152
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
92153
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toast#config-appendTo)
|
|
91786
92154
|
*/
|
|
91787
92155
|
appendTo?: HTMLElement|string
|
|
91788
92156
|
/**
|
|
@@ -91952,10 +92320,14 @@ type ToastConfig = {
|
|
|
91952
92320
|
ignoreParentReadOnly?: boolean
|
|
91953
92321
|
/**
|
|
91954
92322
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
92323
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
92324
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toast#config-insertBefore)
|
|
91955
92325
|
*/
|
|
91956
92326
|
insertBefore?: HTMLElement|string
|
|
91957
92327
|
/**
|
|
91958
92328
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
92329
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
92330
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toast#config-insertFirst)
|
|
91959
92331
|
*/
|
|
91960
92332
|
insertFirst?: HTMLElement|string
|
|
91961
92333
|
/**
|
|
@@ -92641,6 +93013,8 @@ type ToolConfig = {
|
|
|
92641
93013
|
/**
|
|
92642
93014
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
92643
93015
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
93016
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93017
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool#config-appendTo)
|
|
92644
93018
|
*/
|
|
92645
93019
|
appendTo?: HTMLElement|string
|
|
92646
93020
|
/**
|
|
@@ -92824,10 +93198,14 @@ type ToolConfig = {
|
|
|
92824
93198
|
ignoreParentReadOnly?: boolean
|
|
92825
93199
|
/**
|
|
92826
93200
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
93201
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93202
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool#config-insertBefore)
|
|
92827
93203
|
*/
|
|
92828
93204
|
insertBefore?: HTMLElement|string
|
|
92829
93205
|
/**
|
|
92830
93206
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
93207
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93208
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tool#config-insertFirst)
|
|
92831
93209
|
*/
|
|
92832
93210
|
insertFirst?: HTMLElement|string
|
|
92833
93211
|
/**
|
|
@@ -93566,6 +93944,8 @@ type ToolbarConfig = {
|
|
|
93566
93944
|
/**
|
|
93567
93945
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
93568
93946
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
93947
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
93948
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar#config-appendTo)
|
|
93569
93949
|
*/
|
|
93570
93950
|
appendTo?: HTMLElement|string
|
|
93571
93951
|
/**
|
|
@@ -93772,10 +94152,14 @@ type ToolbarConfig = {
|
|
|
93772
94152
|
inputFieldAlign?: 'start'|'end'
|
|
93773
94153
|
/**
|
|
93774
94154
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
94155
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94156
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar#config-insertBefore)
|
|
93775
94157
|
*/
|
|
93776
94158
|
insertBefore?: HTMLElement|string
|
|
93777
94159
|
/**
|
|
93778
94160
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
94161
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94162
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Toolbar#config-insertFirst)
|
|
93779
94163
|
*/
|
|
93780
94164
|
insertFirst?: HTMLElement|string
|
|
93781
94165
|
/**
|
|
@@ -94714,6 +95098,8 @@ type TooltipConfig = {
|
|
|
94714
95098
|
/**
|
|
94715
95099
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
94716
95100
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
95101
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95102
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip#config-appendTo)
|
|
94717
95103
|
*/
|
|
94718
95104
|
appendTo?: HTMLElement|string
|
|
94719
95105
|
/**
|
|
@@ -94972,10 +95358,11 @@ type TooltipConfig = {
|
|
|
94972
95358
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
94973
95359
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
94974
95360
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
95361
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
94975
95362
|
* @param {Event} context.event The raw DOM event
|
|
94976
95363
|
* @returns {string,Promise<any>}
|
|
94977
95364
|
*/
|
|
94978
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
95365
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
94979
95366
|
/**
|
|
94980
95367
|
* A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
94981
95368
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip#config-header)
|
|
@@ -95051,10 +95438,14 @@ type TooltipConfig = {
|
|
|
95051
95438
|
inputFieldAlign?: 'start'|'end'
|
|
95052
95439
|
/**
|
|
95053
95440
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
95441
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95442
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip#config-insertBefore)
|
|
95054
95443
|
*/
|
|
95055
95444
|
insertBefore?: HTMLElement|string
|
|
95056
95445
|
/**
|
|
95057
95446
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
95447
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
95448
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Tooltip#config-insertFirst)
|
|
95058
95449
|
*/
|
|
95059
95450
|
insertFirst?: HTMLElement|string
|
|
95060
95451
|
/**
|
|
@@ -95992,6 +96383,8 @@ type WidgetConfig = {
|
|
|
95992
96383
|
/**
|
|
95993
96384
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
95994
96385
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
96386
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96387
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo)
|
|
95995
96388
|
*/
|
|
95996
96389
|
appendTo?: HTMLElement|string
|
|
95997
96390
|
/**
|
|
@@ -96161,10 +96554,14 @@ type WidgetConfig = {
|
|
|
96161
96554
|
ignoreParentReadOnly?: boolean
|
|
96162
96555
|
/**
|
|
96163
96556
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
96557
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96558
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-insertBefore)
|
|
96164
96559
|
*/
|
|
96165
96560
|
insertBefore?: HTMLElement|string
|
|
96166
96561
|
/**
|
|
96167
96562
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
96563
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96564
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-insertFirst)
|
|
96168
96565
|
*/
|
|
96169
96566
|
insertFirst?: HTMLElement|string
|
|
96170
96567
|
/**
|
|
@@ -96560,6 +96957,7 @@ export class Widget extends Base {
|
|
|
96560
96957
|
/**
|
|
96561
96958
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
96562
96959
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
96960
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96563
96961
|
*/
|
|
96564
96962
|
appendTo: HTMLElement|string
|
|
96565
96963
|
/**
|
|
@@ -96650,10 +97048,12 @@ export class Widget extends Base {
|
|
|
96650
97048
|
id: string
|
|
96651
97049
|
/**
|
|
96652
97050
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
97051
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96653
97052
|
*/
|
|
96654
97053
|
insertBefore: HTMLElement|string
|
|
96655
97054
|
/**
|
|
96656
97055
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
97056
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
96657
97057
|
*/
|
|
96658
97058
|
insertFirst: HTMLElement|string
|
|
96659
97059
|
/**
|
|
@@ -97592,6 +97992,8 @@ type YearPickerConfig = {
|
|
|
97592
97992
|
/**
|
|
97593
97993
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
97594
97994
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
97995
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
97996
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/YearPicker#config-appendTo)
|
|
97595
97997
|
*/
|
|
97596
97998
|
appendTo?: HTMLElement|string
|
|
97597
97999
|
/**
|
|
@@ -97847,10 +98249,14 @@ type YearPickerConfig = {
|
|
|
97847
98249
|
inputFieldAlign?: 'start'|'end'
|
|
97848
98250
|
/**
|
|
97849
98251
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
98252
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
98253
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/YearPicker#config-insertBefore)
|
|
97850
98254
|
*/
|
|
97851
98255
|
insertBefore?: HTMLElement|string
|
|
97852
98256
|
/**
|
|
97853
98257
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
98258
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
98259
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/YearPicker#config-insertFirst)
|
|
97854
98260
|
*/
|
|
97855
98261
|
insertFirst?: HTMLElement|string
|
|
97856
98262
|
/**
|
|
@@ -98738,6 +99144,8 @@ type UndoRedoBaseConfig = {
|
|
|
98738
99144
|
/**
|
|
98739
99145
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
98740
99146
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
99147
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
99148
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/base/UndoRedoBase#config-appendTo)
|
|
98741
99149
|
*/
|
|
98742
99150
|
appendTo?: HTMLElement|string
|
|
98743
99151
|
/**
|
|
@@ -98938,10 +99346,14 @@ type UndoRedoBaseConfig = {
|
|
|
98938
99346
|
inputFieldAlign?: 'start'|'end'
|
|
98939
99347
|
/**
|
|
98940
99348
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
99349
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
99350
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/base/UndoRedoBase#config-insertBefore)
|
|
98941
99351
|
*/
|
|
98942
99352
|
insertBefore?: HTMLElement|string
|
|
98943
99353
|
/**
|
|
98944
99354
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
99355
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
99356
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/base/UndoRedoBase#config-insertFirst)
|
|
98945
99357
|
*/
|
|
98946
99358
|
insertFirst?: HTMLElement|string
|
|
98947
99359
|
/**
|
|
@@ -99691,6 +100103,8 @@ type AISettingsPanelConfig = {
|
|
|
99691
100103
|
/**
|
|
99692
100104
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
99693
100105
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
100106
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100107
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/AISettingsPanel#config-appendTo)
|
|
99694
100108
|
*/
|
|
99695
100109
|
appendTo?: HTMLElement|string
|
|
99696
100110
|
/**
|
|
@@ -99893,10 +100307,14 @@ type AISettingsPanelConfig = {
|
|
|
99893
100307
|
inputFieldAlign?: 'start'|'end'
|
|
99894
100308
|
/**
|
|
99895
100309
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
100310
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100311
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/AISettingsPanel#config-insertBefore)
|
|
99896
100312
|
*/
|
|
99897
100313
|
insertBefore?: HTMLElement|string
|
|
99898
100314
|
/**
|
|
99899
100315
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
100316
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100317
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/AISettingsPanel#config-insertFirst)
|
|
99900
100318
|
*/
|
|
99901
100319
|
insertFirst?: HTMLElement|string
|
|
99902
100320
|
/**
|
|
@@ -100770,6 +101188,8 @@ type ChatPanelConfig = {
|
|
|
100770
101188
|
/**
|
|
100771
101189
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
100772
101190
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
101191
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
101192
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/ChatPanel#config-appendTo)
|
|
100773
101193
|
*/
|
|
100774
101194
|
appendTo?: HTMLElement|string
|
|
100775
101195
|
/**
|
|
@@ -101040,10 +101460,14 @@ type ChatPanelConfig = {
|
|
|
101040
101460
|
inputFieldAlign?: 'start'|'end'
|
|
101041
101461
|
/**
|
|
101042
101462
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
101463
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
101464
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/ChatPanel#config-insertBefore)
|
|
101043
101465
|
*/
|
|
101044
101466
|
insertBefore?: HTMLElement|string
|
|
101045
101467
|
/**
|
|
101046
101468
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
101469
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
101470
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/ChatPanel#config-insertFirst)
|
|
101047
101471
|
*/
|
|
101048
101472
|
insertFirst?: HTMLElement|string
|
|
101049
101473
|
/**
|
|
@@ -102208,6 +102632,8 @@ type ConfirmationDialogConfig = {
|
|
|
102208
102632
|
/**
|
|
102209
102633
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
102210
102634
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
102635
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
102636
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/ConfirmationDialog#config-appendTo)
|
|
102211
102637
|
*/
|
|
102212
102638
|
appendTo?: HTMLElement|string
|
|
102213
102639
|
/**
|
|
@@ -102392,10 +102818,14 @@ type ConfirmationDialogConfig = {
|
|
|
102392
102818
|
inputFieldAlign?: 'start'|'end'
|
|
102393
102819
|
/**
|
|
102394
102820
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
102821
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
102822
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/ConfirmationDialog#config-insertBefore)
|
|
102395
102823
|
*/
|
|
102396
102824
|
insertBefore?: HTMLElement|string
|
|
102397
102825
|
/**
|
|
102398
102826
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
102827
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
102828
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/chat/ConfirmationDialog#config-insertFirst)
|
|
102399
102829
|
*/
|
|
102400
102830
|
insertFirst?: HTMLElement|string
|
|
102401
102831
|
/**
|
|
@@ -103108,6 +103538,8 @@ type HistogramConfig = {
|
|
|
103108
103538
|
/**
|
|
103109
103539
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
103110
103540
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
103541
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103542
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Histogram#config-appendTo)
|
|
103111
103543
|
*/
|
|
103112
103544
|
appendTo?: HTMLElement|string
|
|
103113
103545
|
/**
|
|
@@ -103359,10 +103791,14 @@ type HistogramConfig = {
|
|
|
103359
103791
|
ignoreParentReadOnly?: boolean
|
|
103360
103792
|
/**
|
|
103361
103793
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
103794
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103795
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Histogram#config-insertBefore)
|
|
103362
103796
|
*/
|
|
103363
103797
|
insertBefore?: HTMLElement|string
|
|
103364
103798
|
/**
|
|
103365
103799
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
103800
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
103801
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Histogram#config-insertFirst)
|
|
103366
103802
|
*/
|
|
103367
103803
|
insertFirst?: HTMLElement|string
|
|
103368
103804
|
/**
|
|
@@ -104014,6 +104450,8 @@ type ScaleConfig = {
|
|
|
104014
104450
|
/**
|
|
104015
104451
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
104016
104452
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
104453
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
104454
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Scale#config-appendTo)
|
|
104017
104455
|
*/
|
|
104018
104456
|
appendTo?: HTMLElement|string
|
|
104019
104457
|
/**
|
|
@@ -104187,10 +104625,14 @@ type ScaleConfig = {
|
|
|
104187
104625
|
ignoreParentReadOnly?: boolean
|
|
104188
104626
|
/**
|
|
104189
104627
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
104628
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
104629
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Scale#config-insertBefore)
|
|
104190
104630
|
*/
|
|
104191
104631
|
insertBefore?: HTMLElement|string
|
|
104192
104632
|
/**
|
|
104193
104633
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
104634
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
104635
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Core/widget/graph/Scale#config-insertFirst)
|
|
104194
104636
|
*/
|
|
104195
104637
|
insertFirst?: HTMLElement|string
|
|
104196
104638
|
/**
|
|
@@ -120980,6 +121422,8 @@ type CellTooltipConfig = {
|
|
|
120980
121422
|
/**
|
|
120981
121423
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
120982
121424
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
121425
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
121426
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip#config-appendTo)
|
|
120983
121427
|
*/
|
|
120984
121428
|
appendTo?: HTMLElement|string
|
|
120985
121429
|
/**
|
|
@@ -121241,10 +121685,11 @@ type CellTooltipConfig = {
|
|
|
121241
121685
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
121242
121686
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
121243
121687
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
121688
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
121244
121689
|
* @param {Event} context.event The raw DOM event
|
|
121245
121690
|
* @returns {string,Promise<any>}
|
|
121246
121691
|
*/
|
|
121247
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
121692
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
121248
121693
|
/**
|
|
121249
121694
|
* A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
121250
121695
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip#config-header)
|
|
@@ -121320,10 +121765,14 @@ type CellTooltipConfig = {
|
|
|
121320
121765
|
inputFieldAlign?: 'start'|'end'
|
|
121321
121766
|
/**
|
|
121322
121767
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
121768
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
121769
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip#config-insertBefore)
|
|
121323
121770
|
*/
|
|
121324
121771
|
insertBefore?: HTMLElement|string
|
|
121325
121772
|
/**
|
|
121326
121773
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
121774
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
121775
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/feature/CellTooltip#config-insertFirst)
|
|
121327
121776
|
*/
|
|
121328
121777
|
insertFirst?: HTMLElement|string
|
|
121329
121778
|
/**
|
|
@@ -135502,6 +135951,8 @@ type GridConfig = {
|
|
|
135502
135951
|
/**
|
|
135503
135952
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
135504
135953
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
135954
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
135955
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/Grid#config-appendTo)
|
|
135505
135956
|
*/
|
|
135506
135957
|
appendTo?: HTMLElement|string
|
|
135507
135958
|
/**
|
|
@@ -135816,10 +136267,14 @@ type GridConfig = {
|
|
|
135816
136267
|
inputFieldAlign?: 'start'|'end'
|
|
135817
136268
|
/**
|
|
135818
136269
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
136270
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
136271
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/Grid#config-insertBefore)
|
|
135819
136272
|
*/
|
|
135820
136273
|
insertBefore?: HTMLElement|string
|
|
135821
136274
|
/**
|
|
135822
136275
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
136276
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
136277
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/Grid#config-insertFirst)
|
|
135823
136278
|
*/
|
|
135824
136279
|
insertFirst?: HTMLElement|string
|
|
135825
136280
|
/**
|
|
@@ -139557,6 +140012,8 @@ type GridBaseConfig = {
|
|
|
139557
140012
|
/**
|
|
139558
140013
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
139559
140014
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
140015
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
140016
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-appendTo)
|
|
139560
140017
|
*/
|
|
139561
140018
|
appendTo?: HTMLElement|string
|
|
139562
140019
|
/**
|
|
@@ -139871,10 +140328,14 @@ type GridBaseConfig = {
|
|
|
139871
140328
|
inputFieldAlign?: 'start'|'end'
|
|
139872
140329
|
/**
|
|
139873
140330
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
140331
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
140332
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-insertBefore)
|
|
139874
140333
|
*/
|
|
139875
140334
|
insertBefore?: HTMLElement|string
|
|
139876
140335
|
/**
|
|
139877
140336
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
140337
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
140338
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/GridBase#config-insertFirst)
|
|
139878
140339
|
*/
|
|
139879
140340
|
insertFirst?: HTMLElement|string
|
|
139880
140341
|
/**
|
|
@@ -146029,6 +146490,8 @@ type TreeGridConfig = {
|
|
|
146029
146490
|
/**
|
|
146030
146491
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
146031
146492
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
146493
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
146494
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/TreeGrid#config-appendTo)
|
|
146032
146495
|
*/
|
|
146033
146496
|
appendTo?: HTMLElement|string
|
|
146034
146497
|
/**
|
|
@@ -146343,10 +146806,14 @@ type TreeGridConfig = {
|
|
|
146343
146806
|
inputFieldAlign?: 'start'|'end'
|
|
146344
146807
|
/**
|
|
146345
146808
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
146809
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
146810
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/TreeGrid#config-insertBefore)
|
|
146346
146811
|
*/
|
|
146347
146812
|
insertBefore?: HTMLElement|string
|
|
146348
146813
|
/**
|
|
146349
146814
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
146815
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
146816
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/TreeGrid#config-insertFirst)
|
|
146350
146817
|
*/
|
|
146351
146818
|
insertFirst?: HTMLElement|string
|
|
146352
146819
|
/**
|
|
@@ -148340,6 +148807,8 @@ type ExportDialogConfig = {
|
|
|
148340
148807
|
/**
|
|
148341
148808
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
148342
148809
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
148810
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
148811
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/export/ExportDialog#config-appendTo)
|
|
148343
148812
|
*/
|
|
148344
148813
|
appendTo?: HTMLElement|string
|
|
148345
148814
|
/**
|
|
@@ -148641,10 +149110,14 @@ type ExportDialogConfig = {
|
|
|
148641
149110
|
inputFieldAlign?: 'start'|'end'
|
|
148642
149111
|
/**
|
|
148643
149112
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
149113
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
149114
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/export/ExportDialog#config-insertBefore)
|
|
148644
149115
|
*/
|
|
148645
149116
|
insertBefore?: HTMLElement|string
|
|
148646
149117
|
/**
|
|
148647
149118
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
149119
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
149120
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/view/export/ExportDialog#config-insertFirst)
|
|
148648
149121
|
*/
|
|
148649
149122
|
insertFirst?: HTMLElement|string
|
|
148650
149123
|
/**
|
|
@@ -150339,6 +150812,8 @@ type AIFilterFieldConfig = {
|
|
|
150339
150812
|
/**
|
|
150340
150813
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
150341
150814
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
150815
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
150816
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/AIFilterField#config-appendTo)
|
|
150342
150817
|
*/
|
|
150343
150818
|
appendTo?: HTMLElement|string
|
|
150344
150819
|
/**
|
|
@@ -150603,10 +151078,14 @@ type AIFilterFieldConfig = {
|
|
|
150603
151078
|
inputWidth?: string|number
|
|
150604
151079
|
/**
|
|
150605
151080
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
151081
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
151082
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/AIFilterField#config-insertBefore)
|
|
150606
151083
|
*/
|
|
150607
151084
|
insertBefore?: HTMLElement|string
|
|
150608
151085
|
/**
|
|
150609
151086
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
151087
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
151088
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/AIFilterField#config-insertFirst)
|
|
150610
151089
|
*/
|
|
150611
151090
|
insertFirst?: HTMLElement|string
|
|
150612
151091
|
/**
|
|
@@ -151485,6 +151964,8 @@ type ChecklistFilterComboConfig = {
|
|
|
151485
151964
|
/**
|
|
151486
151965
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
151487
151966
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
151967
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
151968
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/ChecklistFilterCombo#config-appendTo)
|
|
151488
151969
|
*/
|
|
151489
151970
|
appendTo?: HTMLElement|string
|
|
151490
151971
|
/**
|
|
@@ -151847,10 +152328,14 @@ type ChecklistFilterComboConfig = {
|
|
|
151847
152328
|
inputWidth?: string|number
|
|
151848
152329
|
/**
|
|
151849
152330
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
152331
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
152332
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/ChecklistFilterCombo#config-insertBefore)
|
|
151850
152333
|
*/
|
|
151851
152334
|
insertBefore?: HTMLElement|string
|
|
151852
152335
|
/**
|
|
151853
152336
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
152337
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
152338
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/ChecklistFilterCombo#config-insertFirst)
|
|
151854
152339
|
*/
|
|
151855
152340
|
insertFirst?: HTMLElement|string
|
|
151856
152341
|
/**
|
|
@@ -152727,6 +153212,8 @@ type GridChartDesignerConfig = {
|
|
|
152727
153212
|
/**
|
|
152728
153213
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
152729
153214
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
153215
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
153216
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridChartDesigner#config-appendTo)
|
|
152730
153217
|
*/
|
|
152731
153218
|
appendTo?: HTMLElement|string
|
|
152732
153219
|
/**
|
|
@@ -152902,10 +153389,14 @@ type GridChartDesignerConfig = {
|
|
|
152902
153389
|
ignoreParentReadOnly?: boolean
|
|
152903
153390
|
/**
|
|
152904
153391
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
153392
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
153393
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridChartDesigner#config-insertBefore)
|
|
152905
153394
|
*/
|
|
152906
153395
|
insertBefore?: HTMLElement|string
|
|
152907
153396
|
/**
|
|
152908
153397
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
153398
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
153399
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridChartDesigner#config-insertFirst)
|
|
152909
153400
|
*/
|
|
152910
153401
|
insertFirst?: HTMLElement|string
|
|
152911
153402
|
/**
|
|
@@ -153588,6 +154079,8 @@ type GridFieldFilterPickerConfig = {
|
|
|
153588
154079
|
/**
|
|
153589
154080
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
153590
154081
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
154082
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
154083
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridFieldFilterPicker#config-appendTo)
|
|
153591
154084
|
*/
|
|
153592
154085
|
appendTo?: HTMLElement|string
|
|
153593
154086
|
/**
|
|
@@ -153822,10 +154315,14 @@ type GridFieldFilterPickerConfig = {
|
|
|
153822
154315
|
inputFieldAlign?: 'start'|'end'
|
|
153823
154316
|
/**
|
|
153824
154317
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
154318
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
154319
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridFieldFilterPicker#config-insertBefore)
|
|
153825
154320
|
*/
|
|
153826
154321
|
insertBefore?: HTMLElement|string
|
|
153827
154322
|
/**
|
|
153828
154323
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
154324
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
154325
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridFieldFilterPicker#config-insertFirst)
|
|
153829
154326
|
*/
|
|
153830
154327
|
insertFirst?: HTMLElement|string
|
|
153831
154328
|
/**
|
|
@@ -154647,6 +155144,8 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
154647
155144
|
/**
|
|
154648
155145
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
154649
155146
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
155147
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
155148
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-appendTo)
|
|
154650
155149
|
*/
|
|
154651
155150
|
appendTo?: HTMLElement|string
|
|
154652
155151
|
/**
|
|
@@ -154893,10 +155392,14 @@ type GridFieldFilterPickerGroupConfig = {
|
|
|
154893
155392
|
inputFieldAlign?: 'start'|'end'
|
|
154894
155393
|
/**
|
|
154895
155394
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
155395
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
155396
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertBefore)
|
|
154896
155397
|
*/
|
|
154897
155398
|
insertBefore?: HTMLElement|string
|
|
154898
155399
|
/**
|
|
154899
155400
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
155401
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
155402
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GridFieldFilterPickerGroup#config-insertFirst)
|
|
154900
155403
|
*/
|
|
154901
155404
|
insertFirst?: HTMLElement|string
|
|
154902
155405
|
/**
|
|
@@ -155743,6 +156246,8 @@ type GroupBarConfig = {
|
|
|
155743
156246
|
/**
|
|
155744
156247
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
155745
156248
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
156249
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
156250
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GroupBar#config-appendTo)
|
|
155746
156251
|
*/
|
|
155747
156252
|
appendTo?: HTMLElement|string
|
|
155748
156253
|
/**
|
|
@@ -155792,9 +156297,11 @@ type GroupBarConfig = {
|
|
|
155792
156297
|
/**
|
|
155793
156298
|
* If [closable](https://bryntum.com/products/scheduler/docs/api/Core/widget/ChipView#config-closable) is `true`, this is the name of a callback function to handle what the "close"
|
|
155794
156299
|
* action means. If not provided, the record representing the chip is removed from the store.
|
|
156300
|
+
* @param {Core.data.Model[]} records Records to be closed
|
|
156301
|
+
* @param {object} options Close options
|
|
155795
156302
|
* @returns {void}
|
|
155796
156303
|
*/
|
|
155797
|
-
closeHandler?: string|(() => void)
|
|
156304
|
+
closeHandler?: string|((records: Model[], options: object) => void)
|
|
155798
156305
|
/**
|
|
155799
156306
|
* Custom CSS classes to add to element.
|
|
155800
156307
|
* May be specified as a space separated string, or as an object in which property names
|
|
@@ -155969,10 +156476,14 @@ type GroupBarConfig = {
|
|
|
155969
156476
|
ignoreParentReadOnly?: boolean
|
|
155970
156477
|
/**
|
|
155971
156478
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
156479
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
156480
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GroupBar#config-insertBefore)
|
|
155972
156481
|
*/
|
|
155973
156482
|
insertBefore?: HTMLElement|string
|
|
155974
156483
|
/**
|
|
155975
156484
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
156485
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
156486
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/GroupBar#config-insertFirst)
|
|
155976
156487
|
*/
|
|
155977
156488
|
insertFirst?: HTMLElement|string
|
|
155978
156489
|
/**
|
|
@@ -156802,6 +157313,8 @@ type TreeComboConfig = {
|
|
|
156802
157313
|
/**
|
|
156803
157314
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
156804
157315
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
157316
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
157317
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/TreeCombo#config-appendTo)
|
|
156805
157318
|
*/
|
|
156806
157319
|
appendTo?: HTMLElement|string
|
|
156807
157320
|
/**
|
|
@@ -157164,10 +157677,14 @@ type TreeComboConfig = {
|
|
|
157164
157677
|
inputWidth?: string|number
|
|
157165
157678
|
/**
|
|
157166
157679
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
157680
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
157681
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/TreeCombo#config-insertBefore)
|
|
157167
157682
|
*/
|
|
157168
157683
|
insertBefore?: HTMLElement|string
|
|
157169
157684
|
/**
|
|
157170
157685
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
157686
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
157687
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Grid/widget/TreeCombo#config-insertFirst)
|
|
157171
157688
|
*/
|
|
157172
157689
|
insertFirst?: HTMLElement|string
|
|
157173
157690
|
/**
|
|
@@ -159251,6 +159768,12 @@ type ResourceCollapseColumnConfig = {
|
|
|
159251
159768
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceCollapseColumn#config-alwaysClearCell)
|
|
159252
159769
|
*/
|
|
159253
159770
|
alwaysClearCell?: boolean
|
|
159771
|
+
/**
|
|
159772
|
+
* Controls when to use a resource's per-record [rowHeight](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#field-rowHeight),
|
|
159773
|
+
* whether the row is collapsed (`eventLayout === 'none'`) or expanded (`eventLayout === 'stack'`).
|
|
159774
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceCollapseColumn#config-applyResourceRowHeightOnCollapse)
|
|
159775
|
+
*/
|
|
159776
|
+
applyResourceRowHeightOnCollapse?: boolean
|
|
159254
159777
|
/**
|
|
159255
159778
|
* The `aria-label` to use for this Column`s header element
|
|
159256
159779
|
*/
|
|
@@ -159770,10 +160293,9 @@ type ResourceCollapseColumnConfig = {
|
|
|
159770
160293
|
}
|
|
159771
160294
|
|
|
159772
160295
|
/**
|
|
159773
|
-
* A column toggling the resource [eventLayout](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#field-eventLayout) between `none` and
|
|
159774
|
-
*
|
|
159775
|
-
*
|
|
159776
|
-
* (falling back to `stack`).
|
|
160296
|
+
* A column toggling the resource [eventLayout](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#field-eventLayout) between `none` and `stack`.
|
|
160297
|
+
* When collapsed (`none`), all events in a row overlap and the row takes minimal height. Click the toggle to expand
|
|
160298
|
+
* the row to `stack` layout, which spaces events vertically.
|
|
159777
160299
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceCollapseColumn)
|
|
159778
160300
|
*/
|
|
159779
160301
|
export class ResourceCollapseColumn extends Column {
|
|
@@ -159781,6 +160303,11 @@ export class ResourceCollapseColumn extends Column {
|
|
|
159781
160303
|
* Identifies an object as an instance of [ResourceCollapseColumn](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceCollapseColumn) class, or subclass thereof.
|
|
159782
160304
|
*/
|
|
159783
160305
|
static readonly isResourceCollapseColumn: boolean
|
|
160306
|
+
/**
|
|
160307
|
+
* Controls when to use a resource's per-record [rowHeight](https://bryntum.com/products/scheduler/docs/api/Scheduler/model/ResourceModel#field-rowHeight),
|
|
160308
|
+
* whether the row is collapsed (`eventLayout === 'none'`) or expanded (`eventLayout === 'stack'`).
|
|
160309
|
+
*/
|
|
160310
|
+
applyResourceRowHeightOnCollapse: boolean
|
|
159784
160311
|
/**
|
|
159785
160312
|
* Identifies an object as an instance of [ResourceCollapseColumn](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceCollapseColumn) class, or subclass thereof.
|
|
159786
160313
|
*/
|
|
@@ -159805,6 +160332,13 @@ export class ResourceCollapseColumn extends Column {
|
|
|
159805
160332
|
* @param {Core.Base} event.source The Object that is being destroyed.
|
|
159806
160333
|
*/
|
|
159807
160334
|
onDestroy: ((event: { source: Base }) => void)|string
|
|
160335
|
+
/**
|
|
160336
|
+
* Constructs a new record from the supplied data config.
|
|
160337
|
+
* @param {ProjectModelMixinClassConfig} [config] Raw model config
|
|
160338
|
+
* @param {Core.data.Store} [store] Data store
|
|
160339
|
+
* @param {object} [meta] Meta data
|
|
160340
|
+
*/
|
|
160341
|
+
constructor(config?: ResourceCollapseColumnConfig, store?: Store, meta?: object);
|
|
159808
160342
|
}
|
|
159809
160343
|
|
|
159810
160344
|
/**
|
|
@@ -162599,9 +163133,10 @@ type AbstractCrudManagerListenersTypes = {
|
|
|
162599
163133
|
* @param {object} event.response The decoded server response object.
|
|
162600
163134
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
162601
163135
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163136
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
162602
163137
|
* @param {Response} event.rawResponse The native Response object
|
|
162603
163138
|
*/
|
|
162604
|
-
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
163139
|
+
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
162605
163140
|
/**
|
|
162606
163141
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
162607
163142
|
* listener or due to incomplete prior load request.
|
|
@@ -162618,9 +163153,10 @@ type AbstractCrudManagerListenersTypes = {
|
|
|
162618
163153
|
* @param {string} event.responseText The raw server response text
|
|
162619
163154
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
162620
163155
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163156
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
162621
163157
|
* @param {Response} event.rawResponse The native Response object
|
|
162622
163158
|
*/
|
|
162623
|
-
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
163159
|
+
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
162624
163160
|
/**
|
|
162625
163161
|
* Fires when registered stores get into state when they don't have any
|
|
162626
163162
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -162773,9 +163309,10 @@ type AbstractCrudManagerListeners = {
|
|
|
162773
163309
|
* @param {object} event.response The decoded server response object.
|
|
162774
163310
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
162775
163311
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163312
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
162776
163313
|
* @param {Response} event.rawResponse The native Response object
|
|
162777
163314
|
*/
|
|
162778
|
-
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
163315
|
+
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
162779
163316
|
/**
|
|
162780
163317
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
162781
163318
|
* listener or due to incomplete prior load request.
|
|
@@ -162792,9 +163329,10 @@ type AbstractCrudManagerListeners = {
|
|
|
162792
163329
|
* @param {string} event.responseText The raw server response text
|
|
162793
163330
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
162794
163331
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163332
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
162795
163333
|
* @param {Response} event.rawResponse The native Response object
|
|
162796
163334
|
*/
|
|
162797
|
-
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
163335
|
+
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
162798
163336
|
/**
|
|
162799
163337
|
* Fires when registered stores get into state when they don't have any
|
|
162800
163338
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -163080,9 +163618,10 @@ type AbstractCrudManagerConfig = {
|
|
|
163080
163618
|
* @param {object} event.response The decoded server response object.
|
|
163081
163619
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163082
163620
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163621
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163083
163622
|
* @param {Response} event.rawResponse The native Response object
|
|
163084
163623
|
*/
|
|
163085
|
-
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
163624
|
+
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
163086
163625
|
/**
|
|
163087
163626
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
163088
163627
|
* listener or due to incomplete prior load request.
|
|
@@ -163099,9 +163638,10 @@ type AbstractCrudManagerConfig = {
|
|
|
163099
163638
|
* @param {string} event.responseText The raw server response text
|
|
163100
163639
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163101
163640
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163641
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163102
163642
|
* @param {Response} event.rawResponse The native Response object
|
|
163103
163643
|
*/
|
|
163104
|
-
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
163644
|
+
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
163105
163645
|
/**
|
|
163106
163646
|
* Fires when registered stores get into state when they don't have any
|
|
163107
163647
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -163382,9 +163922,10 @@ export abstract class AbstractCrudManager extends Base {
|
|
|
163382
163922
|
* @param {object} event.response The decoded server response object.
|
|
163383
163923
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163384
163924
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163925
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163385
163926
|
* @param {Response} event.rawResponse The native Response object
|
|
163386
163927
|
*/
|
|
163387
|
-
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
163928
|
+
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
163388
163929
|
/**
|
|
163389
163930
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
163390
163931
|
* listener or due to incomplete prior load request.
|
|
@@ -163401,9 +163942,10 @@ export abstract class AbstractCrudManager extends Base {
|
|
|
163401
163942
|
* @param {string} event.responseText The raw server response text
|
|
163402
163943
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163403
163944
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
163945
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163404
163946
|
* @param {Response} event.rawResponse The native Response object
|
|
163405
163947
|
*/
|
|
163406
|
-
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
163948
|
+
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
163407
163949
|
/**
|
|
163408
163950
|
* Fires when registered stores get into state when they don't have any
|
|
163409
163951
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -163790,9 +164332,10 @@ type AbstractCrudManagerMixinClassListenersTypes = {
|
|
|
163790
164332
|
* @param {object} event.response The decoded server response object.
|
|
163791
164333
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163792
164334
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
164335
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163793
164336
|
* @param {Response} event.rawResponse The native Response object
|
|
163794
164337
|
*/
|
|
163795
|
-
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
164338
|
+
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
163796
164339
|
/**
|
|
163797
164340
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
163798
164341
|
* listener or due to incomplete prior load request.
|
|
@@ -163809,9 +164352,10 @@ type AbstractCrudManagerMixinClassListenersTypes = {
|
|
|
163809
164352
|
* @param {string} event.responseText The raw server response text
|
|
163810
164353
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163811
164354
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
164355
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163812
164356
|
* @param {Response} event.rawResponse The native Response object
|
|
163813
164357
|
*/
|
|
163814
|
-
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
164358
|
+
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
163815
164359
|
/**
|
|
163816
164360
|
* Fires when registered stores get into state when they don't have any
|
|
163817
164361
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -163964,9 +164508,10 @@ type AbstractCrudManagerMixinClassListeners = {
|
|
|
163964
164508
|
* @param {object} event.response The decoded server response object.
|
|
163965
164509
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163966
164510
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
164511
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163967
164512
|
* @param {Response} event.rawResponse The native Response object
|
|
163968
164513
|
*/
|
|
163969
|
-
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
164514
|
+
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
163970
164515
|
/**
|
|
163971
164516
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
163972
164517
|
* listener or due to incomplete prior load request.
|
|
@@ -163983,9 +164528,10 @@ type AbstractCrudManagerMixinClassListeners = {
|
|
|
163983
164528
|
* @param {string} event.responseText The raw server response text
|
|
163984
164529
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
163985
164530
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
164531
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
163986
164532
|
* @param {Response} event.rawResponse The native Response object
|
|
163987
164533
|
*/
|
|
163988
|
-
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
164534
|
+
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
163989
164535
|
/**
|
|
163990
164536
|
* Fires when registered stores get into state when they don't have any
|
|
163991
164537
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -164266,9 +164812,10 @@ type AbstractCrudManagerMixinClassConfig = {
|
|
|
164266
164812
|
* @param {object} event.response The decoded server response object.
|
|
164267
164813
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
164268
164814
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
164815
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
164269
164816
|
* @param {Response} event.rawResponse The native Response object
|
|
164270
164817
|
*/
|
|
164271
|
-
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
164818
|
+
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
164272
164819
|
/**
|
|
164273
164820
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
164274
164821
|
* listener or due to incomplete prior load request.
|
|
@@ -164285,9 +164832,10 @@ type AbstractCrudManagerMixinClassConfig = {
|
|
|
164285
164832
|
* @param {string} event.responseText The raw server response text
|
|
164286
164833
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
164287
164834
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
164835
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
164288
164836
|
* @param {Response} event.rawResponse The native Response object
|
|
164289
164837
|
*/
|
|
164290
|
-
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
164838
|
+
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
164291
164839
|
/**
|
|
164292
164840
|
* Fires when registered stores get into state when they don't have any
|
|
164293
164841
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -164528,9 +165076,10 @@ export abstract class AbstractCrudManagerMixinClass {
|
|
|
164528
165076
|
* @param {object} event.response The decoded server response object.
|
|
164529
165077
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
164530
165078
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
165079
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
164531
165080
|
* @param {Response} event.rawResponse The native Response object
|
|
164532
165081
|
*/
|
|
164533
|
-
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
165082
|
+
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
164534
165083
|
/**
|
|
164535
165084
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
164536
165085
|
* listener or due to incomplete prior load request.
|
|
@@ -164547,9 +165096,10 @@ export abstract class AbstractCrudManagerMixinClass {
|
|
|
164547
165096
|
* @param {string} event.responseText The raw server response text
|
|
164548
165097
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
164549
165098
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
165099
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
164550
165100
|
* @param {Response} event.rawResponse The native Response object
|
|
164551
165101
|
*/
|
|
164552
|
-
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
165102
|
+
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
164553
165103
|
/**
|
|
164554
165104
|
* Fires when registered stores get into state when they don't have any
|
|
164555
165105
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -167224,9 +167774,10 @@ type CrudManagerListenersTypes = {
|
|
|
167224
167774
|
* @param {object} event.response The decoded server response object.
|
|
167225
167775
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
167226
167776
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
167777
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
167227
167778
|
* @param {Response} event.rawResponse The native Response object
|
|
167228
167779
|
*/
|
|
167229
|
-
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
167780
|
+
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
167230
167781
|
/**
|
|
167231
167782
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
167232
167783
|
* listener or due to incomplete prior load request.
|
|
@@ -167243,9 +167794,10 @@ type CrudManagerListenersTypes = {
|
|
|
167243
167794
|
* @param {string} event.responseText The raw server response text
|
|
167244
167795
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
167245
167796
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
167797
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
167246
167798
|
* @param {Response} event.rawResponse The native Response object
|
|
167247
167799
|
*/
|
|
167248
|
-
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
167800
|
+
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
167249
167801
|
/**
|
|
167250
167802
|
* Fires when registered stores get into state when they don't have any
|
|
167251
167803
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -167408,9 +167960,10 @@ type CrudManagerListeners = {
|
|
|
167408
167960
|
* @param {object} event.response The decoded server response object.
|
|
167409
167961
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
167410
167962
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
167963
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
167411
167964
|
* @param {Response} event.rawResponse The native Response object
|
|
167412
167965
|
*/
|
|
167413
|
-
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
167966
|
+
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
167414
167967
|
/**
|
|
167415
167968
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
167416
167969
|
* listener or due to incomplete prior load request.
|
|
@@ -167427,9 +167980,10 @@ type CrudManagerListeners = {
|
|
|
167427
167980
|
* @param {string} event.responseText The raw server response text
|
|
167428
167981
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
167429
167982
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
167983
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
167430
167984
|
* @param {Response} event.rawResponse The native Response object
|
|
167431
167985
|
*/
|
|
167432
|
-
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
167986
|
+
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
167433
167987
|
/**
|
|
167434
167988
|
* Fires when registered stores get into state when they don't have any
|
|
167435
167989
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -167803,9 +168357,10 @@ type CrudManagerConfig = {
|
|
|
167803
168357
|
* @param {object} event.response The decoded server response object.
|
|
167804
168358
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
167805
168359
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
168360
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
167806
168361
|
* @param {Response} event.rawResponse The native Response object
|
|
167807
168362
|
*/
|
|
167808
|
-
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
168363
|
+
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
167809
168364
|
/**
|
|
167810
168365
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
167811
168366
|
* listener or due to incomplete prior load request.
|
|
@@ -167822,9 +168377,10 @@ type CrudManagerConfig = {
|
|
|
167822
168377
|
* @param {string} event.responseText The raw server response text
|
|
167823
168378
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
167824
168379
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
168380
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
167825
168381
|
* @param {Response} event.rawResponse The native Response object
|
|
167826
168382
|
*/
|
|
167827
|
-
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
168383
|
+
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
167828
168384
|
/**
|
|
167829
168385
|
* Fires when registered stores get into state when they don't have any
|
|
167830
168386
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -168151,9 +168707,10 @@ export class CrudManager extends AbstractCrudManager {
|
|
|
168151
168707
|
* @param {object} event.response The decoded server response object.
|
|
168152
168708
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
168153
168709
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
168710
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
168154
168711
|
* @param {Response} event.rawResponse The native Response object
|
|
168155
168712
|
*/
|
|
168156
|
-
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
168713
|
+
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
168157
168714
|
/**
|
|
168158
168715
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
168159
168716
|
* listener or due to incomplete prior load request.
|
|
@@ -168170,9 +168727,10 @@ export class CrudManager extends AbstractCrudManager {
|
|
|
168170
168727
|
* @param {string} event.responseText The raw server response text
|
|
168171
168728
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
168172
168729
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
168730
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
168173
168731
|
* @param {Response} event.rawResponse The native Response object
|
|
168174
168732
|
*/
|
|
168175
|
-
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
168733
|
+
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
168176
168734
|
/**
|
|
168177
168735
|
* Fires when registered stores get into state when they don't have any
|
|
168178
168736
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -180663,9 +181221,10 @@ type ProjectCrudManagerClassListenersTypes = {
|
|
|
180663
181221
|
* @param {object} event.response The decoded server response object.
|
|
180664
181222
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
180665
181223
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
181224
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
180666
181225
|
* @param {Response} event.rawResponse The native Response object
|
|
180667
181226
|
*/
|
|
180668
|
-
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
181227
|
+
load: (event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
180669
181228
|
/**
|
|
180670
181229
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
180671
181230
|
* listener or due to incomplete prior load request.
|
|
@@ -180682,9 +181241,10 @@ type ProjectCrudManagerClassListenersTypes = {
|
|
|
180682
181241
|
* @param {string} event.responseText The raw server response text
|
|
180683
181242
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
180684
181243
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
181244
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
180685
181245
|
* @param {Response} event.rawResponse The native Response object
|
|
180686
181246
|
*/
|
|
180687
|
-
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void
|
|
181247
|
+
loadFail: (event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void
|
|
180688
181248
|
/**
|
|
180689
181249
|
* Fires when registered stores get into state when they don't have any
|
|
180690
181250
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -180847,9 +181407,10 @@ type ProjectCrudManagerClassListeners = {
|
|
|
180847
181407
|
* @param {object} event.response The decoded server response object.
|
|
180848
181408
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
180849
181409
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
181410
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
180850
181411
|
* @param {Response} event.rawResponse The native Response object
|
|
180851
181412
|
*/
|
|
180852
|
-
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
181413
|
+
load?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
180853
181414
|
/**
|
|
180854
181415
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
180855
181416
|
* listener or due to incomplete prior load request.
|
|
@@ -180866,9 +181427,10 @@ type ProjectCrudManagerClassListeners = {
|
|
|
180866
181427
|
* @param {string} event.responseText The raw server response text
|
|
180867
181428
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
180868
181429
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
181430
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
180869
181431
|
* @param {Response} event.rawResponse The native Response object
|
|
180870
181432
|
*/
|
|
180871
|
-
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
181433
|
+
loadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
180872
181434
|
/**
|
|
180873
181435
|
* Fires when registered stores get into state when they don't have any
|
|
180874
181436
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -181183,9 +181745,10 @@ type ProjectCrudManagerClassConfig = {
|
|
|
181183
181745
|
* @param {object} event.response The decoded server response object.
|
|
181184
181746
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
181185
181747
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
181748
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
181186
181749
|
* @param {Response} event.rawResponse The native Response object
|
|
181187
181750
|
*/
|
|
181188
|
-
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
181751
|
+
onLoad?: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
181189
181752
|
/**
|
|
181190
181753
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
181191
181754
|
* listener or due to incomplete prior load request.
|
|
@@ -181202,9 +181765,10 @@ type ProjectCrudManagerClassConfig = {
|
|
|
181202
181765
|
* @param {string} event.responseText The raw server response text
|
|
181203
181766
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
181204
181767
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
181768
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
181205
181769
|
* @param {Response} event.rawResponse The native Response object
|
|
181206
181770
|
*/
|
|
181207
|
-
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
181771
|
+
onLoadFail?: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
181208
181772
|
/**
|
|
181209
181773
|
* Fires when registered stores get into state when they don't have any
|
|
181210
181774
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -181479,9 +182043,10 @@ export class ProjectCrudManagerClass {
|
|
|
181479
182043
|
* @param {object} event.response The decoded server response object.
|
|
181480
182044
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
181481
182045
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
182046
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
181482
182047
|
* @param {Response} event.rawResponse The native Response object
|
|
181483
182048
|
*/
|
|
181484
|
-
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
182049
|
+
onLoad: ((event: { source: AbstractCrudManager, response: object, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
181485
182050
|
/**
|
|
181486
182051
|
* Fired after [load request](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) was canceled by some [beforeLoad](#Scheduler/crud/AbstractCrudManagerMixin#event-beforeLoad)
|
|
181487
182052
|
* listener or due to incomplete prior load request.
|
|
@@ -181498,9 +182063,10 @@ export class ProjectCrudManagerClass {
|
|
|
181498
182063
|
* @param {string} event.responseText The raw server response text
|
|
181499
182064
|
* @param {object} event.responseOptions [DEPRECATED] see `requestOptions`
|
|
181500
182065
|
* @param {object} event.requestOptions The request options passed to the request.
|
|
182066
|
+
* @param {object} event.options The options provided to the [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) method.
|
|
181501
182067
|
* @param {Response} event.rawResponse The native Response object
|
|
181502
182068
|
*/
|
|
181503
|
-
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, rawResponse: Response }) => void)|string
|
|
182069
|
+
onLoadFail: ((event: { source: AbstractCrudManager, response: object, responseText: string, responseOptions: object, requestOptions: object, options: object, rawResponse: Response }) => void)|string
|
|
181504
182070
|
/**
|
|
181505
182071
|
* Fires when registered stores get into state when they don't have any
|
|
181506
182072
|
* not persisted change. This happens after [load](https://bryntum.com/products/scheduler/docs/api/Scheduler/crud/AbstractCrudManagerMixin#function-load) or [sync](#Scheduler/crud/AbstractCrudManagerMixin#function-sync) request
|
|
@@ -186961,6 +187527,8 @@ type EventTooltipConfig = {
|
|
|
186961
187527
|
/**
|
|
186962
187528
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
186963
187529
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
187530
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
187531
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-appendTo)
|
|
186964
187532
|
*/
|
|
186965
187533
|
appendTo?: HTMLElement|string
|
|
186966
187534
|
/**
|
|
@@ -187226,10 +187794,11 @@ type EventTooltipConfig = {
|
|
|
187226
187794
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
187227
187795
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
187228
187796
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
187797
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
187229
187798
|
* @param {Event} context.event The raw DOM event
|
|
187230
187799
|
* @returns {string,Promise<any>}
|
|
187231
187800
|
*/
|
|
187232
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
187801
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
187233
187802
|
/**
|
|
187234
187803
|
* A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
187235
187804
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-header)
|
|
@@ -187305,10 +187874,14 @@ type EventTooltipConfig = {
|
|
|
187305
187874
|
inputFieldAlign?: 'start'|'end'
|
|
187306
187875
|
/**
|
|
187307
187876
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
187877
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
187878
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-insertBefore)
|
|
187308
187879
|
*/
|
|
187309
187880
|
insertBefore?: HTMLElement|string
|
|
187310
187881
|
/**
|
|
187311
187882
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
187883
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
187884
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/EventTooltip#config-insertFirst)
|
|
187312
187885
|
*/
|
|
187313
187886
|
insertFirst?: HTMLElement|string
|
|
187314
187887
|
/**
|
|
@@ -195434,6 +196007,8 @@ type TooltipBaseConfig = {
|
|
|
195434
196007
|
/**
|
|
195435
196008
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
195436
196009
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
196010
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
196011
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/base/TooltipBase#config-appendTo)
|
|
195437
196012
|
*/
|
|
195438
196013
|
appendTo?: HTMLElement|string
|
|
195439
196014
|
/**
|
|
@@ -195700,10 +196275,11 @@ type TooltipBaseConfig = {
|
|
|
195700
196275
|
* @param {Core.widget.Tooltip} context.tip The tooltip instance
|
|
195701
196276
|
* @param {HTMLElement} context.element The Element for which the Tooltip is monitoring mouse movement
|
|
195702
196277
|
* @param {HTMLElement} context.activeTarget The target element that triggered the show
|
|
196278
|
+
* @param {HTMLElement} [context.forElement] Alias for `activeTarget`, provided for backward compatibility
|
|
195703
196279
|
* @param {Event} context.event The raw DOM event
|
|
195704
196280
|
* @returns {string,Promise<any>}
|
|
195705
196281
|
*/
|
|
195706
|
-
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
196282
|
+
getHtml?: ((context: { tip: Tooltip, element: HTMLElement, activeTarget: HTMLElement, forElement?: HTMLElement, event: Event }) => Promise<string|Promise<any>>)|string
|
|
195707
196283
|
/**
|
|
195708
196284
|
* A config [object](https://bryntum.com/products/scheduler/docs/api/Core/widget/Panel#typedef-PanelHeader) for the panel's header or a string in place of a `title`.
|
|
195709
196285
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/base/TooltipBase#config-header)
|
|
@@ -195779,10 +196355,14 @@ type TooltipBaseConfig = {
|
|
|
195779
196355
|
inputFieldAlign?: 'start'|'end'
|
|
195780
196356
|
/**
|
|
195781
196357
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
196358
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
196359
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/base/TooltipBase#config-insertBefore)
|
|
195782
196360
|
*/
|
|
195783
196361
|
insertBefore?: HTMLElement|string
|
|
195784
196362
|
/**
|
|
195785
196363
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
196364
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
196365
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/feature/base/TooltipBase#config-insertFirst)
|
|
195786
196366
|
*/
|
|
195787
196367
|
insertFirst?: HTMLElement|string
|
|
195788
196368
|
/**
|
|
@@ -206698,6 +207278,8 @@ type EventEditorConfig = {
|
|
|
206698
207278
|
/**
|
|
206699
207279
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
206700
207280
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
207281
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
207282
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/EventEditor#config-appendTo)
|
|
206701
207283
|
*/
|
|
206702
207284
|
appendTo?: HTMLElement|string
|
|
206703
207285
|
/**
|
|
@@ -206987,10 +207569,14 @@ type EventEditorConfig = {
|
|
|
206987
207569
|
inputFieldAlign?: 'start'|'end'
|
|
206988
207570
|
/**
|
|
206989
207571
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
207572
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
207573
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/EventEditor#config-insertBefore)
|
|
206990
207574
|
*/
|
|
206991
207575
|
insertBefore?: HTMLElement|string
|
|
206992
207576
|
/**
|
|
206993
207577
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
207578
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
207579
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/EventEditor#config-insertFirst)
|
|
206994
207580
|
*/
|
|
206995
207581
|
insertFirst?: HTMLElement|string
|
|
206996
207582
|
/**
|
|
@@ -207848,6 +208434,8 @@ type ResourceHeaderConfig = {
|
|
|
207848
208434
|
/**
|
|
207849
208435
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
207850
208436
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
208437
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
208438
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader#config-appendTo)
|
|
207851
208439
|
*/
|
|
207852
208440
|
appendTo?: HTMLElement|string
|
|
207853
208441
|
/**
|
|
@@ -208043,10 +208631,14 @@ type ResourceHeaderConfig = {
|
|
|
208043
208631
|
ignoreParentReadOnly?: boolean
|
|
208044
208632
|
/**
|
|
208045
208633
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
208634
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
208635
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader#config-insertBefore)
|
|
208046
208636
|
*/
|
|
208047
208637
|
insertBefore?: HTMLElement|string
|
|
208048
208638
|
/**
|
|
208049
208639
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
208640
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
208641
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/ResourceHeader#config-insertFirst)
|
|
208050
208642
|
*/
|
|
208051
208643
|
insertFirst?: HTMLElement|string
|
|
208052
208644
|
/**
|
|
@@ -213701,6 +214293,8 @@ type SchedulerConfig = {
|
|
|
213701
214293
|
/**
|
|
213702
214294
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
213703
214295
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
214296
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
214297
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-appendTo)
|
|
213704
214298
|
*/
|
|
213705
214299
|
appendTo?: HTMLElement|string
|
|
213706
214300
|
/**
|
|
@@ -214311,10 +214905,14 @@ type SchedulerConfig = {
|
|
|
214311
214905
|
inputFieldAlign?: 'start'|'end'
|
|
214312
214906
|
/**
|
|
214313
214907
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
214908
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
214909
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertBefore)
|
|
214314
214910
|
*/
|
|
214315
214911
|
insertBefore?: HTMLElement|string
|
|
214316
214912
|
/**
|
|
214317
214913
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
214914
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
214915
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertFirst)
|
|
214318
214916
|
*/
|
|
214319
214917
|
insertFirst?: HTMLElement|string
|
|
214320
214918
|
/**
|
|
@@ -223551,6 +224149,8 @@ type SchedulerBaseConfig = {
|
|
|
223551
224149
|
/**
|
|
223552
224150
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
223553
224151
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
224152
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
224153
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-appendTo)
|
|
223554
224154
|
*/
|
|
223555
224155
|
appendTo?: HTMLElement|string
|
|
223556
224156
|
/**
|
|
@@ -224161,10 +224761,14 @@ type SchedulerBaseConfig = {
|
|
|
224161
224761
|
inputFieldAlign?: 'start'|'end'
|
|
224162
224762
|
/**
|
|
224163
224763
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
224764
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
224765
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertBefore)
|
|
224164
224766
|
*/
|
|
224165
224767
|
insertBefore?: HTMLElement|string
|
|
224166
224768
|
/**
|
|
224167
224769
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
224770
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
224771
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertFirst)
|
|
224168
224772
|
*/
|
|
224169
224773
|
insertFirst?: HTMLElement|string
|
|
224170
224774
|
/**
|
|
@@ -232892,6 +233496,8 @@ type TimelineBaseConfig = {
|
|
|
232892
233496
|
/**
|
|
232893
233497
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
232894
233498
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
233499
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
233500
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-appendTo)
|
|
232895
233501
|
*/
|
|
232896
233502
|
appendTo?: HTMLElement|string
|
|
232897
233503
|
/**
|
|
@@ -233298,10 +233904,14 @@ type TimelineBaseConfig = {
|
|
|
233298
233904
|
inputFieldAlign?: 'start'|'end'
|
|
233299
233905
|
/**
|
|
233300
233906
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
233907
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
233908
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-insertBefore)
|
|
233301
233909
|
*/
|
|
233302
233910
|
insertBefore?: HTMLElement|string
|
|
233303
233911
|
/**
|
|
233304
233912
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
233913
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
233914
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#config-insertFirst)
|
|
233305
233915
|
*/
|
|
233306
233916
|
insertFirst?: HTMLElement|string
|
|
233307
233917
|
/**
|
|
@@ -238859,6 +239469,8 @@ type TimelineHistogramConfig = {
|
|
|
238859
239469
|
/**
|
|
238860
239470
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
238861
239471
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
239472
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
239473
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-appendTo)
|
|
238862
239474
|
*/
|
|
238863
239475
|
appendTo?: HTMLElement|string
|
|
238864
239476
|
/**
|
|
@@ -239391,10 +240003,14 @@ type TimelineHistogramConfig = {
|
|
|
239391
240003
|
inputFieldAlign?: 'start'|'end'
|
|
239392
240004
|
/**
|
|
239393
240005
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
240006
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
240007
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertBefore)
|
|
239394
240008
|
*/
|
|
239395
240009
|
insertBefore?: HTMLElement|string
|
|
239396
240010
|
/**
|
|
239397
240011
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
240012
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
240013
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertFirst)
|
|
239398
240014
|
*/
|
|
239399
240015
|
insertFirst?: HTMLElement|string
|
|
239400
240016
|
/**
|
|
@@ -241543,6 +242159,7 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
241543
242159
|
/**
|
|
241544
242160
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
241545
242161
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
242162
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
241546
242163
|
*/
|
|
241547
242164
|
appendTo: HTMLElement|string
|
|
241548
242165
|
/**
|
|
@@ -241777,10 +242394,12 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
241777
242394
|
inputFieldAlign: 'start'|'end'
|
|
241778
242395
|
/**
|
|
241779
242396
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
242397
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
241780
242398
|
*/
|
|
241781
242399
|
insertBefore: HTMLElement|string
|
|
241782
242400
|
/**
|
|
241783
242401
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
242402
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
241784
242403
|
*/
|
|
241785
242404
|
insertFirst: HTMLElement|string
|
|
241786
242405
|
/**
|
|
@@ -246598,6 +247217,8 @@ type TimelineHistogramBaseConfig = {
|
|
|
246598
247217
|
/**
|
|
246599
247218
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
246600
247219
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
247220
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
247221
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-appendTo)
|
|
246601
247222
|
*/
|
|
246602
247223
|
appendTo?: HTMLElement|string
|
|
246603
247224
|
/**
|
|
@@ -247115,10 +247736,14 @@ type TimelineHistogramBaseConfig = {
|
|
|
247115
247736
|
inputFieldAlign?: 'start'|'end'
|
|
247116
247737
|
/**
|
|
247117
247738
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
247739
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
247740
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-insertBefore)
|
|
247118
247741
|
*/
|
|
247119
247742
|
insertBefore?: HTMLElement|string
|
|
247120
247743
|
/**
|
|
247121
247744
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
247745
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
247746
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#config-insertFirst)
|
|
247122
247747
|
*/
|
|
247123
247748
|
insertFirst?: HTMLElement|string
|
|
247124
247749
|
/**
|
|
@@ -249664,6 +250289,8 @@ type SchedulerExportDialogConfig = {
|
|
|
249664
250289
|
/**
|
|
249665
250290
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
249666
250291
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
250292
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
250293
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/export/SchedulerExportDialog#config-appendTo)
|
|
249667
250294
|
*/
|
|
249668
250295
|
appendTo?: HTMLElement|string
|
|
249669
250296
|
/**
|
|
@@ -249965,10 +250592,14 @@ type SchedulerExportDialogConfig = {
|
|
|
249965
250592
|
inputFieldAlign?: 'start'|'end'
|
|
249966
250593
|
/**
|
|
249967
250594
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
250595
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
250596
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/export/SchedulerExportDialog#config-insertBefore)
|
|
249968
250597
|
*/
|
|
249969
250598
|
insertBefore?: HTMLElement|string
|
|
249970
250599
|
/**
|
|
249971
250600
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
250601
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
250602
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/export/SchedulerExportDialog#config-insertFirst)
|
|
249972
250603
|
*/
|
|
249973
250604
|
insertFirst?: HTMLElement|string
|
|
249974
250605
|
/**
|
|
@@ -255116,6 +255747,8 @@ type TimelineHistogramGroupingClassConfig = {
|
|
|
255116
255747
|
/**
|
|
255117
255748
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
255118
255749
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
255750
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
255751
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#config-appendTo)
|
|
255119
255752
|
*/
|
|
255120
255753
|
appendTo?: HTMLElement|string
|
|
255121
255754
|
/**
|
|
@@ -255648,10 +256281,14 @@ type TimelineHistogramGroupingClassConfig = {
|
|
|
255648
256281
|
inputFieldAlign?: 'start'|'end'
|
|
255649
256282
|
/**
|
|
255650
256283
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
256284
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
256285
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#config-insertBefore)
|
|
255651
256286
|
*/
|
|
255652
256287
|
insertBefore?: HTMLElement|string
|
|
255653
256288
|
/**
|
|
255654
256289
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
256290
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
256291
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#config-insertFirst)
|
|
255655
256292
|
*/
|
|
255656
256293
|
insertFirst?: HTMLElement|string
|
|
255657
256294
|
/**
|
|
@@ -258798,6 +259435,8 @@ type RecurrenceConfirmationPopupConfig = {
|
|
|
258798
259435
|
/**
|
|
258799
259436
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
258800
259437
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
259438
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
259439
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceConfirmationPopup#config-appendTo)
|
|
258801
259440
|
*/
|
|
258802
259441
|
appendTo?: HTMLElement|string
|
|
258803
259442
|
/**
|
|
@@ -259087,10 +259726,14 @@ type RecurrenceConfirmationPopupConfig = {
|
|
|
259087
259726
|
inputFieldAlign?: 'start'|'end'
|
|
259088
259727
|
/**
|
|
259089
259728
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
259729
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
259730
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceConfirmationPopup#config-insertBefore)
|
|
259090
259731
|
*/
|
|
259091
259732
|
insertBefore?: HTMLElement|string
|
|
259092
259733
|
/**
|
|
259093
259734
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
259735
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
259736
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceConfirmationPopup#config-insertFirst)
|
|
259094
259737
|
*/
|
|
259095
259738
|
insertFirst?: HTMLElement|string
|
|
259096
259739
|
/**
|
|
@@ -260092,6 +260735,8 @@ type RecurrenceEditorConfig = {
|
|
|
260092
260735
|
/**
|
|
260093
260736
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
260094
260737
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
260738
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
260739
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceEditor#config-appendTo)
|
|
260095
260740
|
*/
|
|
260096
260741
|
appendTo?: HTMLElement|string
|
|
260097
260742
|
/**
|
|
@@ -260381,10 +261026,14 @@ type RecurrenceEditorConfig = {
|
|
|
260381
261026
|
inputFieldAlign?: 'start'|'end'
|
|
260382
261027
|
/**
|
|
260383
261028
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
261029
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
261030
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceEditor#config-insertBefore)
|
|
260384
261031
|
*/
|
|
260385
261032
|
insertBefore?: HTMLElement|string
|
|
260386
261033
|
/**
|
|
260387
261034
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
261035
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
261036
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceEditor#config-insertFirst)
|
|
260388
261037
|
*/
|
|
260389
261038
|
insertFirst?: HTMLElement|string
|
|
260390
261039
|
/**
|
|
@@ -261329,6 +261978,8 @@ type RecurrenceLegendButtonConfig = {
|
|
|
261329
261978
|
/**
|
|
261330
261979
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
261331
261980
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
261981
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
261982
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceLegendButton#config-appendTo)
|
|
261332
261983
|
*/
|
|
261333
261984
|
appendTo?: HTMLElement|string
|
|
261334
261985
|
/**
|
|
@@ -261520,10 +262171,14 @@ type RecurrenceLegendButtonConfig = {
|
|
|
261520
262171
|
ignoreParentReadOnly?: boolean
|
|
261521
262172
|
/**
|
|
261522
262173
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
262174
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
262175
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceLegendButton#config-insertBefore)
|
|
261523
262176
|
*/
|
|
261524
262177
|
insertBefore?: HTMLElement|string
|
|
261525
262178
|
/**
|
|
261526
262179
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
262180
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
262181
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/RecurrenceLegendButton#config-insertFirst)
|
|
261527
262182
|
*/
|
|
261528
262183
|
insertFirst?: HTMLElement|string
|
|
261529
262184
|
/**
|
|
@@ -262372,6 +263027,8 @@ type RecurrenceComboConfig = {
|
|
|
262372
263027
|
/**
|
|
262373
263028
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
262374
263029
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
263030
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
263031
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceCombo#config-appendTo)
|
|
262375
263032
|
*/
|
|
262376
263033
|
appendTo?: HTMLElement|string
|
|
262377
263034
|
/**
|
|
@@ -262734,10 +263391,14 @@ type RecurrenceComboConfig = {
|
|
|
262734
263391
|
inputWidth?: string|number
|
|
262735
263392
|
/**
|
|
262736
263393
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
263394
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
263395
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceCombo#config-insertBefore)
|
|
262737
263396
|
*/
|
|
262738
263397
|
insertBefore?: HTMLElement|string
|
|
262739
263398
|
/**
|
|
262740
263399
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
263400
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
263401
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceCombo#config-insertFirst)
|
|
262741
263402
|
*/
|
|
262742
263403
|
insertFirst?: HTMLElement|string
|
|
262743
263404
|
/**
|
|
@@ -263696,6 +264357,8 @@ type RecurrenceDaysComboConfig = {
|
|
|
263696
264357
|
/**
|
|
263697
264358
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
263698
264359
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
264360
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
264361
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceDaysCombo#config-appendTo)
|
|
263699
264362
|
*/
|
|
263700
264363
|
appendTo?: HTMLElement|string
|
|
263701
264364
|
/**
|
|
@@ -264058,10 +264721,14 @@ type RecurrenceDaysComboConfig = {
|
|
|
264058
264721
|
inputWidth?: string|number
|
|
264059
264722
|
/**
|
|
264060
264723
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
264724
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
264725
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceDaysCombo#config-insertBefore)
|
|
264061
264726
|
*/
|
|
264062
264727
|
insertBefore?: HTMLElement|string
|
|
264063
264728
|
/**
|
|
264064
264729
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
264730
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
264731
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceDaysCombo#config-insertFirst)
|
|
264065
264732
|
*/
|
|
264066
264733
|
insertFirst?: HTMLElement|string
|
|
264067
264734
|
/**
|
|
@@ -265020,6 +265687,8 @@ type RecurrenceFrequencyComboConfig = {
|
|
|
265020
265687
|
/**
|
|
265021
265688
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
265022
265689
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
265690
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
265691
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceFrequencyCombo#config-appendTo)
|
|
265023
265692
|
*/
|
|
265024
265693
|
appendTo?: HTMLElement|string
|
|
265025
265694
|
/**
|
|
@@ -265382,10 +266051,14 @@ type RecurrenceFrequencyComboConfig = {
|
|
|
265382
266051
|
inputWidth?: string|number
|
|
265383
266052
|
/**
|
|
265384
266053
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
266054
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
266055
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceFrequencyCombo#config-insertBefore)
|
|
265385
266056
|
*/
|
|
265386
266057
|
insertBefore?: HTMLElement|string
|
|
265387
266058
|
/**
|
|
265388
266059
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
266060
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
266061
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceFrequencyCombo#config-insertFirst)
|
|
265389
266062
|
*/
|
|
265390
266063
|
insertFirst?: HTMLElement|string
|
|
265391
266064
|
/**
|
|
@@ -266344,6 +267017,8 @@ type RecurrencePositionsComboConfig = {
|
|
|
266344
267017
|
/**
|
|
266345
267018
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
266346
267019
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
267020
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
267021
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrencePositionsCombo#config-appendTo)
|
|
266347
267022
|
*/
|
|
266348
267023
|
appendTo?: HTMLElement|string
|
|
266349
267024
|
/**
|
|
@@ -266706,10 +267381,14 @@ type RecurrencePositionsComboConfig = {
|
|
|
266706
267381
|
inputWidth?: string|number
|
|
266707
267382
|
/**
|
|
266708
267383
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
267384
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
267385
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrencePositionsCombo#config-insertBefore)
|
|
266709
267386
|
*/
|
|
266710
267387
|
insertBefore?: HTMLElement|string
|
|
266711
267388
|
/**
|
|
266712
267389
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
267390
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
267391
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrencePositionsCombo#config-insertFirst)
|
|
266713
267392
|
*/
|
|
266714
267393
|
insertFirst?: HTMLElement|string
|
|
266715
267394
|
/**
|
|
@@ -267668,6 +268347,8 @@ type RecurrenceStopConditionComboConfig = {
|
|
|
267668
268347
|
/**
|
|
267669
268348
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
267670
268349
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
268350
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
268351
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceStopConditionCombo#config-appendTo)
|
|
267671
268352
|
*/
|
|
267672
268353
|
appendTo?: HTMLElement|string
|
|
267673
268354
|
/**
|
|
@@ -268030,10 +268711,14 @@ type RecurrenceStopConditionComboConfig = {
|
|
|
268030
268711
|
inputWidth?: string|number
|
|
268031
268712
|
/**
|
|
268032
268713
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
268714
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
268715
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceStopConditionCombo#config-insertBefore)
|
|
268033
268716
|
*/
|
|
268034
268717
|
insertBefore?: HTMLElement|string
|
|
268035
268718
|
/**
|
|
268036
268719
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
268720
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
268721
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/recurrence/field/RecurrenceStopConditionCombo#config-insertFirst)
|
|
268037
268722
|
*/
|
|
268038
268723
|
insertFirst?: HTMLElement|string
|
|
268039
268724
|
/**
|
|
@@ -268960,6 +269645,8 @@ type DayButtonsConfig = {
|
|
|
268960
269645
|
/**
|
|
268961
269646
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
268962
269647
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
269648
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
269649
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-appendTo)
|
|
268963
269650
|
*/
|
|
268964
269651
|
appendTo?: HTMLElement|string
|
|
268965
269652
|
/**
|
|
@@ -269163,10 +269850,14 @@ type DayButtonsConfig = {
|
|
|
269163
269850
|
inputFieldAlign?: 'start'|'end'
|
|
269164
269851
|
/**
|
|
269165
269852
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
269853
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
269854
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-insertBefore)
|
|
269166
269855
|
*/
|
|
269167
269856
|
insertBefore?: HTMLElement|string
|
|
269168
269857
|
/**
|
|
269169
269858
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
269859
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
269860
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/DayButtons#config-insertFirst)
|
|
269170
269861
|
*/
|
|
269171
269862
|
insertFirst?: HTMLElement|string
|
|
269172
269863
|
/**
|
|
@@ -270030,6 +270721,8 @@ type EventColorFieldConfig = {
|
|
|
270030
270721
|
/**
|
|
270031
270722
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
270032
270723
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
270724
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
270725
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-appendTo)
|
|
270033
270726
|
*/
|
|
270034
270727
|
appendTo?: HTMLElement|string
|
|
270035
270728
|
/**
|
|
@@ -270287,10 +270980,14 @@ type EventColorFieldConfig = {
|
|
|
270287
270980
|
inputWidth?: string|number
|
|
270288
270981
|
/**
|
|
270289
270982
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
270983
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
270984
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-insertBefore)
|
|
270290
270985
|
*/
|
|
270291
270986
|
insertBefore?: HTMLElement|string
|
|
270292
270987
|
/**
|
|
270293
270988
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
270989
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
270990
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorField#config-insertFirst)
|
|
270294
270991
|
*/
|
|
270295
270992
|
insertFirst?: HTMLElement|string
|
|
270296
270993
|
/**
|
|
@@ -271158,6 +271855,8 @@ type EventColorPickerConfig = {
|
|
|
271158
271855
|
/**
|
|
271159
271856
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
271160
271857
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
271858
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
271859
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorPicker#config-appendTo)
|
|
271161
271860
|
*/
|
|
271162
271861
|
appendTo?: HTMLElement|string
|
|
271163
271862
|
/**
|
|
@@ -271378,10 +272077,14 @@ type EventColorPickerConfig = {
|
|
|
271378
272077
|
ignoreParentReadOnly?: boolean
|
|
271379
272078
|
/**
|
|
271380
272079
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
272080
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
272081
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorPicker#config-insertBefore)
|
|
271381
272082
|
*/
|
|
271382
272083
|
insertBefore?: HTMLElement|string
|
|
271383
272084
|
/**
|
|
271384
272085
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
272086
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
272087
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/EventColorPicker#config-insertFirst)
|
|
271385
272088
|
*/
|
|
271386
272089
|
insertFirst?: HTMLElement|string
|
|
271387
272090
|
/**
|
|
@@ -272221,6 +272924,8 @@ type ProjectComboConfig = {
|
|
|
272221
272924
|
/**
|
|
272222
272925
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
272223
272926
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
272927
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
272928
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-appendTo)
|
|
272224
272929
|
*/
|
|
272225
272930
|
appendTo?: HTMLElement|string
|
|
272226
272931
|
/**
|
|
@@ -272583,10 +273288,14 @@ type ProjectComboConfig = {
|
|
|
272583
273288
|
inputWidth?: string|number
|
|
272584
273289
|
/**
|
|
272585
273290
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
273291
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
273292
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-insertBefore)
|
|
272586
273293
|
*/
|
|
272587
273294
|
insertBefore?: HTMLElement|string
|
|
272588
273295
|
/**
|
|
272589
273296
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
273297
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
273298
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-insertFirst)
|
|
272590
273299
|
*/
|
|
272591
273300
|
insertFirst?: HTMLElement|string
|
|
272592
273301
|
/**
|
|
@@ -273551,6 +274260,8 @@ type ResourceComboConfig = {
|
|
|
273551
274260
|
/**
|
|
273552
274261
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
273553
274262
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
274263
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
274264
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-appendTo)
|
|
273554
274265
|
*/
|
|
273555
274266
|
appendTo?: HTMLElement|string
|
|
273556
274267
|
/**
|
|
@@ -273913,10 +274624,14 @@ type ResourceComboConfig = {
|
|
|
273913
274624
|
inputWidth?: string|number
|
|
273914
274625
|
/**
|
|
273915
274626
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
274627
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
274628
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-insertBefore)
|
|
273916
274629
|
*/
|
|
273917
274630
|
insertBefore?: HTMLElement|string
|
|
273918
274631
|
/**
|
|
273919
274632
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
274633
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
274634
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-insertFirst)
|
|
273920
274635
|
*/
|
|
273921
274636
|
insertFirst?: HTMLElement|string
|
|
273922
274637
|
/**
|
|
@@ -274890,6 +275605,8 @@ type ResourceFilterConfig = {
|
|
|
274890
275605
|
/**
|
|
274891
275606
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
274892
275607
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
275608
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
275609
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-appendTo)
|
|
274893
275610
|
*/
|
|
274894
275611
|
appendTo?: HTMLElement|string
|
|
274895
275612
|
/**
|
|
@@ -275109,10 +275826,14 @@ type ResourceFilterConfig = {
|
|
|
275109
275826
|
ignoreParentReadOnly?: boolean
|
|
275110
275827
|
/**
|
|
275111
275828
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
275829
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
275830
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertBefore)
|
|
275112
275831
|
*/
|
|
275113
275832
|
insertBefore?: HTMLElement|string
|
|
275114
275833
|
/**
|
|
275115
275834
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
275835
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
275836
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertFirst)
|
|
275116
275837
|
*/
|
|
275117
275838
|
insertFirst?: HTMLElement|string
|
|
275118
275839
|
/**
|
|
@@ -276075,6 +276796,8 @@ type SchedulerDatePickerConfig = {
|
|
|
276075
276796
|
/**
|
|
276076
276797
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
276077
276798
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
276799
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
276800
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-appendTo)
|
|
276078
276801
|
*/
|
|
276079
276802
|
appendTo?: HTMLElement|string
|
|
276080
276803
|
/**
|
|
@@ -276433,10 +277156,14 @@ type SchedulerDatePickerConfig = {
|
|
|
276433
277156
|
inputFieldAlign?: 'start'|'end'
|
|
276434
277157
|
/**
|
|
276435
277158
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
277159
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
277160
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertBefore)
|
|
276436
277161
|
*/
|
|
276437
277162
|
insertBefore?: HTMLElement|string
|
|
276438
277163
|
/**
|
|
276439
277164
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
277165
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
277166
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertFirst)
|
|
276440
277167
|
*/
|
|
276441
277168
|
insertFirst?: HTMLElement|string
|
|
276442
277169
|
/**
|
|
@@ -277426,6 +278153,8 @@ type TimeZoomSliderConfig = {
|
|
|
277426
278153
|
/**
|
|
277427
278154
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
277428
278155
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
278156
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
278157
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-appendTo)
|
|
277429
278158
|
*/
|
|
277430
278159
|
appendTo?: HTMLElement|string
|
|
277431
278160
|
/**
|
|
@@ -277600,10 +278329,14 @@ type TimeZoomSliderConfig = {
|
|
|
277600
278329
|
ignoreParentReadOnly?: boolean
|
|
277601
278330
|
/**
|
|
277602
278331
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
278332
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
278333
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertBefore)
|
|
277603
278334
|
*/
|
|
277604
278335
|
insertBefore?: HTMLElement|string
|
|
277605
278336
|
/**
|
|
277606
278337
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
278338
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
278339
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertFirst)
|
|
277607
278340
|
*/
|
|
277608
278341
|
insertFirst?: HTMLElement|string
|
|
277609
278342
|
/**
|
|
@@ -278344,6 +279077,8 @@ type UndoRedoConfig = {
|
|
|
278344
279077
|
/**
|
|
278345
279078
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
278346
279079
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
279080
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
279081
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-appendTo)
|
|
278347
279082
|
*/
|
|
278348
279083
|
appendTo?: HTMLElement|string
|
|
278349
279084
|
/**
|
|
@@ -278544,10 +279279,14 @@ type UndoRedoConfig = {
|
|
|
278544
279279
|
inputFieldAlign?: 'start'|'end'
|
|
278545
279280
|
/**
|
|
278546
279281
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
279282
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
279283
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-insertBefore)
|
|
278547
279284
|
*/
|
|
278548
279285
|
insertBefore?: HTMLElement|string
|
|
278549
279286
|
/**
|
|
278550
279287
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
279288
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
279289
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-insertFirst)
|
|
278551
279290
|
*/
|
|
278552
279291
|
insertFirst?: HTMLElement|string
|
|
278553
279292
|
/**
|
|
@@ -279367,6 +280106,8 @@ type ViewPresetComboConfig = {
|
|
|
279367
280106
|
/**
|
|
279368
280107
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
279369
280108
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
280109
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
280110
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-appendTo)
|
|
279370
280111
|
*/
|
|
279371
280112
|
appendTo?: HTMLElement|string
|
|
279372
280113
|
/**
|
|
@@ -279598,10 +280339,14 @@ type ViewPresetComboConfig = {
|
|
|
279598
280339
|
inputWidth?: string|number
|
|
279599
280340
|
/**
|
|
279600
280341
|
* Element (or element id) to insert this widget before. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
280342
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
280343
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-insertBefore)
|
|
279601
280344
|
*/
|
|
279602
280345
|
insertBefore?: HTMLElement|string
|
|
279603
280346
|
/**
|
|
279604
280347
|
* Element (or element id) to append this widget element to, as a first child. If provided, [appendTo](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#config-appendTo) config is ignored.
|
|
280348
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
280349
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-insertFirst)
|
|
279605
280350
|
*/
|
|
279606
280351
|
insertFirst?: HTMLElement|string
|
|
279607
280352
|
/**
|