@bryntum/scheduler-vue-3-thin 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/README.md +6 -6
- package/lib/chunks/BTSObfAz.js.map +1 -1
- package/lib/chunks/BXIuEgYD.js.map +1 -1
- package/lib/chunks/CCTV8qn0.js.map +1 -1
- package/lib/chunks/COFzBhB8.js.map +1 -1
- package/lib/chunks/DJSlX0qP.js.map +1 -1
- package/lib/chunks/DP61St-u.js.map +1 -1
- package/lib/chunks/LNqNYJck.js.map +1 -1
- package/lib/chunks/R69sJLmF.js.map +1 -1
- package/lib/chunks/WykRcMCN.js.map +1 -1
- package/lib/chunks/eUISgYXE.js.map +1 -1
- package/lib/chunks/t8aiH3XL.js.map +1 -1
- package/package.json +1 -1
- package/src/components/BryntumEventColorField.vue +6 -0
- package/src/components/BryntumEventColorFieldProps.ts +6 -0
- package/src/components/BryntumProjectCombo.vue +7 -1
- package/src/components/BryntumProjectComboProps.ts +7 -1
- package/src/components/BryntumResourceCombo.vue +6 -0
- package/src/components/BryntumResourceComboProps.ts +6 -0
- package/src/components/BryntumResourceFilter.vue +6 -0
- package/src/components/BryntumResourceFilterProps.ts +6 -0
- package/src/components/BryntumScheduler.vue +7 -1
- package/src/components/BryntumSchedulerBase.vue +7 -1
- package/src/components/BryntumSchedulerBaseProps.ts +7 -1
- package/src/components/BryntumSchedulerDatePicker.vue +6 -0
- package/src/components/BryntumSchedulerDatePickerProps.ts +6 -0
- package/src/components/BryntumSchedulerProps.ts +7 -1
- package/src/components/BryntumTimeZoomSlider.vue +6 -0
- package/src/components/BryntumTimeZoomSliderProps.ts +6 -0
- package/src/components/BryntumTimelineHistogram.vue +6 -0
- package/src/components/BryntumTimelineHistogramProps.ts +6 -0
- package/src/components/BryntumUndoRedo.vue +7 -1
- package/src/components/BryntumUndoRedoProps.ts +7 -1
- package/src/components/BryntumViewPresetCombo.vue +6 -0
- package/src/components/BryntumViewPresetComboProps.ts +6 -0
|
@@ -43,6 +43,8 @@ defineProps<{
|
|
|
43
43
|
/**
|
|
44
44
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45
45
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
46
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-appendTo)
|
|
46
48
|
*/
|
|
47
49
|
appendTo ? : HTMLElement|string
|
|
48
50
|
/**
|
|
@@ -407,10 +409,14 @@ defineProps<{
|
|
|
407
409
|
inputWidth ? : string|number
|
|
408
410
|
/**
|
|
409
411
|
* 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.
|
|
412
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
413
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-insertBefore)
|
|
410
414
|
*/
|
|
411
415
|
insertBefore ? : HTMLElement|string
|
|
412
416
|
/**
|
|
413
417
|
* 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.
|
|
418
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
419
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-insertFirst)
|
|
414
420
|
*/
|
|
415
421
|
insertFirst ? : HTMLElement|string
|
|
416
422
|
/**
|
|
@@ -622,7 +628,7 @@ defineProps<{
|
|
|
622
628
|
/**
|
|
623
629
|
* Project to reconfigure when picking an item.
|
|
624
630
|
*/
|
|
625
|
-
project ? : ProjectModel|object
|
|
631
|
+
project ? : ProjectModel|object|null
|
|
626
632
|
/**
|
|
627
633
|
* Makes the field unmodifiable by user action. The input area is not editable, and triggers
|
|
628
634
|
* are unresponsive.
|
|
@@ -28,6 +28,8 @@ export declare type BryntumProjectComboProps = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30
30
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
31
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-appendTo)
|
|
31
33
|
*/
|
|
32
34
|
appendTo ? : HTMLElement|string
|
|
33
35
|
/**
|
|
@@ -392,10 +394,14 @@ export declare type BryntumProjectComboProps = {
|
|
|
392
394
|
inputWidth ? : string|number
|
|
393
395
|
/**
|
|
394
396
|
* 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.
|
|
397
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
398
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-insertBefore)
|
|
395
399
|
*/
|
|
396
400
|
insertBefore ? : HTMLElement|string
|
|
397
401
|
/**
|
|
398
402
|
* 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.
|
|
403
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
404
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ProjectCombo#config-insertFirst)
|
|
399
405
|
*/
|
|
400
406
|
insertFirst ? : HTMLElement|string
|
|
401
407
|
/**
|
|
@@ -607,7 +613,7 @@ export declare type BryntumProjectComboProps = {
|
|
|
607
613
|
/**
|
|
608
614
|
* Project to reconfigure when picking an item.
|
|
609
615
|
*/
|
|
610
|
-
project ? : ProjectModel|object
|
|
616
|
+
project ? : ProjectModel|object|null
|
|
611
617
|
/**
|
|
612
618
|
* Makes the field unmodifiable by user action. The input area is not editable, and triggers
|
|
613
619
|
* are unresponsive.
|
|
@@ -43,6 +43,8 @@ defineProps<{
|
|
|
43
43
|
/**
|
|
44
44
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45
45
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
46
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-appendTo)
|
|
46
48
|
*/
|
|
47
49
|
appendTo ? : HTMLElement|string
|
|
48
50
|
/**
|
|
@@ -407,10 +409,14 @@ defineProps<{
|
|
|
407
409
|
inputWidth ? : string|number
|
|
408
410
|
/**
|
|
409
411
|
* 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.
|
|
412
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
413
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-insertBefore)
|
|
410
414
|
*/
|
|
411
415
|
insertBefore ? : HTMLElement|string
|
|
412
416
|
/**
|
|
413
417
|
* 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.
|
|
418
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
419
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-insertFirst)
|
|
414
420
|
*/
|
|
415
421
|
insertFirst ? : HTMLElement|string
|
|
416
422
|
/**
|
|
@@ -28,6 +28,8 @@ export declare type BryntumResourceComboProps = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30
30
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
31
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-appendTo)
|
|
31
33
|
*/
|
|
32
34
|
appendTo ? : HTMLElement|string
|
|
33
35
|
/**
|
|
@@ -392,10 +394,14 @@ export declare type BryntumResourceComboProps = {
|
|
|
392
394
|
inputWidth ? : string|number
|
|
393
395
|
/**
|
|
394
396
|
* 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.
|
|
397
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
398
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-insertBefore)
|
|
395
399
|
*/
|
|
396
400
|
insertBefore ? : HTMLElement|string
|
|
397
401
|
/**
|
|
398
402
|
* 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.
|
|
403
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
404
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceCombo#config-insertFirst)
|
|
399
405
|
*/
|
|
400
406
|
insertFirst ? : HTMLElement|string
|
|
401
407
|
/**
|
|
@@ -53,6 +53,8 @@ defineProps<{
|
|
|
53
53
|
/**
|
|
54
54
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
55
55
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
56
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
57
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-appendTo)
|
|
56
58
|
*/
|
|
57
59
|
appendTo ? : HTMLElement|string
|
|
58
60
|
/**
|
|
@@ -274,10 +276,14 @@ defineProps<{
|
|
|
274
276
|
ignoreParentReadOnly ? : Boolean
|
|
275
277
|
/**
|
|
276
278
|
* 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.
|
|
279
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
280
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertBefore)
|
|
277
281
|
*/
|
|
278
282
|
insertBefore ? : HTMLElement|string
|
|
279
283
|
/**
|
|
280
284
|
* 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.
|
|
285
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
286
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertFirst)
|
|
281
287
|
*/
|
|
282
288
|
insertFirst ? : HTMLElement|string
|
|
283
289
|
/**
|
|
@@ -38,6 +38,8 @@ export declare type BryntumResourceFilterProps = {
|
|
|
38
38
|
/**
|
|
39
39
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
40
40
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
41
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
42
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-appendTo)
|
|
41
43
|
*/
|
|
42
44
|
appendTo ? : HTMLElement|string
|
|
43
45
|
/**
|
|
@@ -259,10 +261,14 @@ export declare type BryntumResourceFilterProps = {
|
|
|
259
261
|
ignoreParentReadOnly ? : Boolean
|
|
260
262
|
/**
|
|
261
263
|
* 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.
|
|
264
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
265
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertBefore)
|
|
262
266
|
*/
|
|
263
267
|
insertBefore ? : HTMLElement|string
|
|
264
268
|
/**
|
|
265
269
|
* 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.
|
|
270
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
271
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ResourceFilter#config-insertFirst)
|
|
266
272
|
*/
|
|
267
273
|
insertFirst ? : HTMLElement|string
|
|
268
274
|
/**
|
|
@@ -96,6 +96,8 @@ defineProps<{
|
|
|
96
96
|
/**
|
|
97
97
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
98
98
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
99
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-appendTo)
|
|
99
101
|
*/
|
|
100
102
|
appendTo ? : HTMLElement|string
|
|
101
103
|
/**
|
|
@@ -703,10 +705,14 @@ defineProps<{
|
|
|
703
705
|
inputFieldAlign ? : 'start'|'end'
|
|
704
706
|
/**
|
|
705
707
|
* 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.
|
|
708
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
709
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertBefore)
|
|
706
710
|
*/
|
|
707
711
|
insertBefore ? : HTMLElement|string
|
|
708
712
|
/**
|
|
709
713
|
* 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.
|
|
714
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
715
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertFirst)
|
|
710
716
|
*/
|
|
711
717
|
insertFirst ? : HTMLElement|string
|
|
712
718
|
/**
|
|
@@ -959,7 +965,7 @@ defineProps<{
|
|
|
959
965
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
960
966
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-project)
|
|
961
967
|
*/
|
|
962
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
968
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
963
969
|
/**
|
|
964
970
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
965
971
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -96,6 +96,8 @@ defineProps<{
|
|
|
96
96
|
/**
|
|
97
97
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
98
98
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
99
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
100
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-appendTo)
|
|
99
101
|
*/
|
|
100
102
|
appendTo ? : HTMLElement|string
|
|
101
103
|
/**
|
|
@@ -703,10 +705,14 @@ defineProps<{
|
|
|
703
705
|
inputFieldAlign ? : 'start'|'end'
|
|
704
706
|
/**
|
|
705
707
|
* 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.
|
|
708
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
709
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertBefore)
|
|
706
710
|
*/
|
|
707
711
|
insertBefore ? : HTMLElement|string
|
|
708
712
|
/**
|
|
709
713
|
* 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.
|
|
714
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
715
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertFirst)
|
|
710
716
|
*/
|
|
711
717
|
insertFirst ? : HTMLElement|string
|
|
712
718
|
/**
|
|
@@ -959,7 +965,7 @@ defineProps<{
|
|
|
959
965
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
960
966
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-project)
|
|
961
967
|
*/
|
|
962
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
968
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
963
969
|
/**
|
|
964
970
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
965
971
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -58,6 +58,8 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
58
58
|
/**
|
|
59
59
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
60
60
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
61
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-appendTo)
|
|
61
63
|
*/
|
|
62
64
|
appendTo ? : HTMLElement|string
|
|
63
65
|
/**
|
|
@@ -665,10 +667,14 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
665
667
|
inputFieldAlign ? : 'start'|'end'
|
|
666
668
|
/**
|
|
667
669
|
* 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.
|
|
670
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
671
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertBefore)
|
|
668
672
|
*/
|
|
669
673
|
insertBefore ? : HTMLElement|string
|
|
670
674
|
/**
|
|
671
675
|
* 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.
|
|
676
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
677
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-insertFirst)
|
|
672
678
|
*/
|
|
673
679
|
insertFirst ? : HTMLElement|string
|
|
674
680
|
/**
|
|
@@ -921,7 +927,7 @@ export declare type BryntumSchedulerBaseProps = {
|
|
|
921
927
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
922
928
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#config-project)
|
|
923
929
|
*/
|
|
924
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
930
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
925
931
|
/**
|
|
926
932
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
927
933
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -56,6 +56,8 @@ defineProps<{
|
|
|
56
56
|
/**
|
|
57
57
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
58
58
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
59
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
60
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-appendTo)
|
|
59
61
|
*/
|
|
60
62
|
appendTo ? : HTMLElement|string
|
|
61
63
|
/**
|
|
@@ -416,10 +418,14 @@ defineProps<{
|
|
|
416
418
|
inputFieldAlign ? : 'start'|'end'
|
|
417
419
|
/**
|
|
418
420
|
* 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.
|
|
421
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
422
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertBefore)
|
|
419
423
|
*/
|
|
420
424
|
insertBefore ? : HTMLElement|string
|
|
421
425
|
/**
|
|
422
426
|
* 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.
|
|
427
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
428
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertFirst)
|
|
423
429
|
*/
|
|
424
430
|
insertFirst ? : HTMLElement|string
|
|
425
431
|
/**
|
|
@@ -41,6 +41,8 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
41
41
|
/**
|
|
42
42
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
43
43
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
44
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
45
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-appendTo)
|
|
44
46
|
*/
|
|
45
47
|
appendTo ? : HTMLElement|string
|
|
46
48
|
/**
|
|
@@ -401,10 +403,14 @@ export declare type BryntumSchedulerDatePickerProps = {
|
|
|
401
403
|
inputFieldAlign ? : 'start'|'end'
|
|
402
404
|
/**
|
|
403
405
|
* 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.
|
|
406
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
407
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertBefore)
|
|
404
408
|
*/
|
|
405
409
|
insertBefore ? : HTMLElement|string
|
|
406
410
|
/**
|
|
407
411
|
* 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.
|
|
412
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
413
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/SchedulerDatePicker#config-insertFirst)
|
|
408
414
|
*/
|
|
409
415
|
insertFirst ? : HTMLElement|string
|
|
410
416
|
/**
|
|
@@ -58,6 +58,8 @@ export declare type BryntumSchedulerProps = {
|
|
|
58
58
|
/**
|
|
59
59
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
60
60
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
61
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
62
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-appendTo)
|
|
61
63
|
*/
|
|
62
64
|
appendTo ? : HTMLElement|string
|
|
63
65
|
/**
|
|
@@ -665,10 +667,14 @@ export declare type BryntumSchedulerProps = {
|
|
|
665
667
|
inputFieldAlign ? : 'start'|'end'
|
|
666
668
|
/**
|
|
667
669
|
* 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.
|
|
670
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
671
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertBefore)
|
|
668
672
|
*/
|
|
669
673
|
insertBefore ? : HTMLElement|string
|
|
670
674
|
/**
|
|
671
675
|
* 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.
|
|
676
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
677
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-insertFirst)
|
|
672
678
|
*/
|
|
673
679
|
insertFirst ? : HTMLElement|string
|
|
674
680
|
/**
|
|
@@ -921,7 +927,7 @@ export declare type BryntumSchedulerProps = {
|
|
|
921
927
|
* Can be omitted in favor of individual store configs or [crudManager](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/SchedulerStores#config-crudManager) config.
|
|
922
928
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#config-project)
|
|
923
929
|
*/
|
|
924
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
930
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
925
931
|
/**
|
|
926
932
|
* The project model class to use when creating the project instance. Override this to use a custom project
|
|
927
933
|
* model class. In SchedulerPro and Gantt, this is overridden to use their respective project model classes.
|
|
@@ -43,6 +43,8 @@ defineProps<{
|
|
|
43
43
|
/**
|
|
44
44
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45
45
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
46
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-appendTo)
|
|
46
48
|
*/
|
|
47
49
|
appendTo ? : HTMLElement|string
|
|
48
50
|
/**
|
|
@@ -219,10 +221,14 @@ defineProps<{
|
|
|
219
221
|
ignoreParentReadOnly ? : Boolean
|
|
220
222
|
/**
|
|
221
223
|
* 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.
|
|
224
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
225
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertBefore)
|
|
222
226
|
*/
|
|
223
227
|
insertBefore ? : HTMLElement|string
|
|
224
228
|
/**
|
|
225
229
|
* 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.
|
|
230
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
231
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertFirst)
|
|
226
232
|
*/
|
|
227
233
|
insertFirst ? : HTMLElement|string
|
|
228
234
|
/**
|
|
@@ -28,6 +28,8 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30
30
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
31
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-appendTo)
|
|
31
33
|
*/
|
|
32
34
|
appendTo ? : HTMLElement|string
|
|
33
35
|
/**
|
|
@@ -204,10 +206,14 @@ export declare type BryntumTimeZoomSliderProps = {
|
|
|
204
206
|
ignoreParentReadOnly ? : Boolean
|
|
205
207
|
/**
|
|
206
208
|
* 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.
|
|
209
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
210
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertBefore)
|
|
207
211
|
*/
|
|
208
212
|
insertBefore ? : HTMLElement|string
|
|
209
213
|
/**
|
|
210
214
|
* 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.
|
|
215
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
216
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/TimeZoomSlider#config-insertFirst)
|
|
211
217
|
*/
|
|
212
218
|
insertFirst ? : HTMLElement|string
|
|
213
219
|
/**
|
|
@@ -90,6 +90,8 @@ defineProps<{
|
|
|
90
90
|
/**
|
|
91
91
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
92
92
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
93
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
94
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-appendTo)
|
|
93
95
|
*/
|
|
94
96
|
appendTo ? : HTMLElement|string
|
|
95
97
|
/**
|
|
@@ -619,10 +621,14 @@ defineProps<{
|
|
|
619
621
|
inputFieldAlign ? : 'start'|'end'
|
|
620
622
|
/**
|
|
621
623
|
* 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.
|
|
624
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
625
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertBefore)
|
|
622
626
|
*/
|
|
623
627
|
insertBefore ? : HTMLElement|string
|
|
624
628
|
/**
|
|
625
629
|
* 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.
|
|
630
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
631
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertFirst)
|
|
626
632
|
*/
|
|
627
633
|
insertFirst ? : HTMLElement|string
|
|
628
634
|
/**
|
|
@@ -52,6 +52,8 @@ export declare type BryntumTimelineHistogramProps = {
|
|
|
52
52
|
/**
|
|
53
53
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
54
54
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
55
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
56
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-appendTo)
|
|
55
57
|
*/
|
|
56
58
|
appendTo ? : HTMLElement|string
|
|
57
59
|
/**
|
|
@@ -581,10 +583,14 @@ export declare type BryntumTimelineHistogramProps = {
|
|
|
581
583
|
inputFieldAlign ? : 'start'|'end'
|
|
582
584
|
/**
|
|
583
585
|
* 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.
|
|
586
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
587
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertBefore)
|
|
584
588
|
*/
|
|
585
589
|
insertBefore ? : HTMLElement|string
|
|
586
590
|
/**
|
|
587
591
|
* 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.
|
|
592
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
593
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#config-insertFirst)
|
|
588
594
|
*/
|
|
589
595
|
insertFirst ? : HTMLElement|string
|
|
590
596
|
/**
|
|
@@ -43,6 +43,8 @@ defineProps<{
|
|
|
43
43
|
/**
|
|
44
44
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
45
45
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
46
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
47
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-appendTo)
|
|
46
48
|
*/
|
|
47
49
|
appendTo ? : HTMLElement|string
|
|
48
50
|
/**
|
|
@@ -245,10 +247,14 @@ defineProps<{
|
|
|
245
247
|
inputFieldAlign ? : 'start'|'end'
|
|
246
248
|
/**
|
|
247
249
|
* 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.
|
|
250
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
251
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-insertBefore)
|
|
248
252
|
*/
|
|
249
253
|
insertBefore ? : HTMLElement|string
|
|
250
254
|
/**
|
|
251
255
|
* 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.
|
|
256
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
257
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-insertFirst)
|
|
252
258
|
*/
|
|
253
259
|
insertFirst ? : HTMLElement|string
|
|
254
260
|
/**
|
|
@@ -391,7 +397,7 @@ defineProps<{
|
|
|
391
397
|
* transaction to track.
|
|
392
398
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-project)
|
|
393
399
|
*/
|
|
394
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
400
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
395
401
|
/**
|
|
396
402
|
* Whether this widget is read-only. This is only valid if the widget is an input
|
|
397
403
|
* field, <strong>or contains input fields at any depth</strong>.
|
|
@@ -28,6 +28,8 @@ export declare type BryntumUndoRedoProps = {
|
|
|
28
28
|
/**
|
|
29
29
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
30
30
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
31
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
32
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-appendTo)
|
|
31
33
|
*/
|
|
32
34
|
appendTo ? : HTMLElement|string
|
|
33
35
|
/**
|
|
@@ -230,10 +232,14 @@ export declare type BryntumUndoRedoProps = {
|
|
|
230
232
|
inputFieldAlign ? : 'start'|'end'
|
|
231
233
|
/**
|
|
232
234
|
* 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.
|
|
235
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
236
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-insertBefore)
|
|
233
237
|
*/
|
|
234
238
|
insertBefore ? : HTMLElement|string
|
|
235
239
|
/**
|
|
236
240
|
* 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.
|
|
241
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
242
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-insertFirst)
|
|
237
243
|
*/
|
|
238
244
|
insertFirst ? : HTMLElement|string
|
|
239
245
|
/**
|
|
@@ -376,7 +382,7 @@ export declare type BryntumUndoRedoProps = {
|
|
|
376
382
|
* transaction to track.
|
|
377
383
|
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/UndoRedo#config-project)
|
|
378
384
|
*/
|
|
379
|
-
project ? : ProjectModel|ProjectModelConfig|object
|
|
385
|
+
project ? : ProjectModel|ProjectModelConfig|object|null
|
|
380
386
|
/**
|
|
381
387
|
* Whether this widget is read-only. This is only valid if the widget is an input
|
|
382
388
|
* field, <strong>or contains input fields at any depth</strong>.
|
|
@@ -37,6 +37,8 @@ defineProps<{
|
|
|
37
37
|
/**
|
|
38
38
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
39
39
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
40
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
41
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-appendTo)
|
|
40
42
|
*/
|
|
41
43
|
appendTo ? : HTMLElement|string
|
|
42
44
|
/**
|
|
@@ -270,10 +272,14 @@ defineProps<{
|
|
|
270
272
|
inputWidth ? : string|number
|
|
271
273
|
/**
|
|
272
274
|
* 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.
|
|
275
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
276
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-insertBefore)
|
|
273
277
|
*/
|
|
274
278
|
insertBefore ? : HTMLElement|string
|
|
275
279
|
/**
|
|
276
280
|
* 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.
|
|
281
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
282
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-insertFirst)
|
|
277
283
|
*/
|
|
278
284
|
insertFirst ? : HTMLElement|string
|
|
279
285
|
/**
|
|
@@ -22,6 +22,8 @@ export declare type BryntumViewPresetComboProps = {
|
|
|
22
22
|
/**
|
|
23
23
|
* Element (or the id of an element) to append this widget's element to. Can be configured, or set once at
|
|
24
24
|
* runtime. To access the element of a rendered widget, see [element](https://bryntum.com/products/scheduler/docs/api/Core/widget/Widget#property-element).
|
|
25
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
26
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-appendTo)
|
|
25
27
|
*/
|
|
26
28
|
appendTo ? : HTMLElement|string
|
|
27
29
|
/**
|
|
@@ -255,10 +257,14 @@ export declare type BryntumViewPresetComboProps = {
|
|
|
255
257
|
inputWidth ? : string|number
|
|
256
258
|
/**
|
|
257
259
|
* 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.
|
|
260
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
261
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-insertBefore)
|
|
258
262
|
*/
|
|
259
263
|
insertBefore ? : HTMLElement|string
|
|
260
264
|
/**
|
|
261
265
|
* 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.
|
|
266
|
+
* <div class="note">When creating nested trees of widgets, this should only be used on the outermost widget.
|
|
267
|
+
* [More...](https://bryntum.com/products/scheduler/docs/api/Scheduler/widget/ViewPresetCombo#config-insertFirst)
|
|
262
268
|
*/
|
|
263
269
|
insertFirst ? : HTMLElement|string
|
|
264
270
|
/**
|