@bryntum/scheduler-thin-trial 7.2.3 → 7.2.4
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/high-contrast-dark.css +29 -0
- package/high-contrast-light.css +29 -0
- package/lib/data/mixin/LazyLoadView.js +1 -1
- package/lib/data/plugin/DateStoreLazyLoadPlugin.js +1 -1
- package/lib/feature/AbstractTimeRanges.js +1 -1
- package/lib/feature/ColumnLines.css +6 -1
- package/lib/feature/Dependencies.css +12 -2
- package/lib/feature/EventDrag.css +14 -2
- package/lib/feature/EventDragSelect.css +6 -1
- package/lib/feature/EventDragSelect.js +1 -1
- package/lib/feature/EventNonWorkingTime.css +6 -1
- package/lib/feature/EventResize.css +6 -1
- package/lib/feature/Labels.css +6 -1
- package/lib/feature/ResourceColumnReorder.css +12 -2
- package/lib/feature/ScheduleContext.css +7 -2
- package/lib/feature/ScrollButtons.js +1 -1
- package/lib/feature/SimpleEventEdit.css +8 -1
- package/lib/feature/Split.js +1 -1
- package/lib/feature/TimeSelection.css +6 -1
- package/lib/feature/TimeSelection.js +1 -1
- package/lib/feature/base/EditBase.js +1 -1
- package/lib/feature/mixin/DependencyCreation.css +7 -2
- package/lib/feature/mixin/HeaderDragSelect.css +8 -1
- package/lib/model/mixin/ResourceModelMixin.js +1 -1
- package/lib/view/ResourceHeader.js +1 -1
- package/lib/view/TimelineBase.css +6 -1
- package/lib/view/TimelineBase.js +1 -1
- package/lib/view/mixin/RecurringEvents.js +1 -1
- package/lib/view/mixin/SchedulerEventRendering.css +26 -6
- package/lib/view/orientation/HorizontalRendering.js +1 -1
- package/lib/view/orientation/VerticalRendering.js +1 -1
- 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 +55 -25
- package/scheduler.css.map +2 -2
- package/scheduler.d.ts +174 -115
package/scheduler.d.ts
CHANGED
|
@@ -779,12 +779,9 @@ type DurationColumnConfig = {
|
|
|
779
779
|
*/
|
|
780
780
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
781
781
|
/**
|
|
782
|
-
* Child
|
|
783
|
-
* tasks.
|
|
784
|
-
* ...
|
|
785
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/DurationColumn#config-children)
|
|
782
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
786
783
|
*/
|
|
787
|
-
children?:
|
|
784
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
788
785
|
/**
|
|
789
786
|
* CSS class added to the header of this column
|
|
790
787
|
*/
|
|
@@ -1536,12 +1533,9 @@ type EventColorColumnConfig = {
|
|
|
1536
1533
|
*/
|
|
1537
1534
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
1538
1535
|
/**
|
|
1539
|
-
* Child
|
|
1540
|
-
* tasks.
|
|
1541
|
-
* ...
|
|
1542
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/EventColorColumn#config-children)
|
|
1536
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
1543
1537
|
*/
|
|
1544
|
-
children?:
|
|
1538
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
1545
1539
|
/**
|
|
1546
1540
|
* CSS class added to the header of this column
|
|
1547
1541
|
*/
|
|
@@ -2250,12 +2244,9 @@ type ResourceCollapseColumnConfig = {
|
|
|
2250
2244
|
*/
|
|
2251
2245
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
2252
2246
|
/**
|
|
2253
|
-
* Child
|
|
2254
|
-
* tasks.
|
|
2255
|
-
* ...
|
|
2256
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceCollapseColumn#config-children)
|
|
2247
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
2257
2248
|
*/
|
|
2258
|
-
children?:
|
|
2249
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
2259
2250
|
/**
|
|
2260
2251
|
* CSS class added to the header of this column
|
|
2261
2252
|
*/
|
|
@@ -2939,12 +2930,9 @@ type ResourceInfoColumnConfig = {
|
|
|
2939
2930
|
*/
|
|
2940
2931
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
2941
2932
|
/**
|
|
2942
|
-
* Child
|
|
2943
|
-
* tasks.
|
|
2944
|
-
* ...
|
|
2945
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceInfoColumn#config-children)
|
|
2933
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
2946
2934
|
*/
|
|
2947
|
-
children?:
|
|
2935
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
2948
2936
|
/**
|
|
2949
2937
|
* CSS class added to the header of this column
|
|
2950
2938
|
*/
|
|
@@ -3685,12 +3673,9 @@ type ScaleColumnConfig = {
|
|
|
3685
3673
|
*/
|
|
3686
3674
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
3687
3675
|
/**
|
|
3688
|
-
* Child
|
|
3689
|
-
* tasks.
|
|
3690
|
-
* ...
|
|
3691
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ScaleColumn#config-children)
|
|
3676
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
3692
3677
|
*/
|
|
3693
|
-
children?:
|
|
3678
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
3694
3679
|
/**
|
|
3695
3680
|
* CSS class added to the header of this column
|
|
3696
3681
|
*/
|
|
@@ -4415,12 +4400,9 @@ type TimeAxisColumnConfig = {
|
|
|
4415
4400
|
*/
|
|
4416
4401
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
4417
4402
|
/**
|
|
4418
|
-
* Child
|
|
4419
|
-
* tasks.
|
|
4420
|
-
* ...
|
|
4421
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/TimeAxisColumn#config-children)
|
|
4403
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
4422
4404
|
*/
|
|
4423
|
-
children?:
|
|
4405
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
4424
4406
|
/**
|
|
4425
4407
|
* CSS class added to the header of this column
|
|
4426
4408
|
*/
|
|
@@ -5136,12 +5118,9 @@ type VerticalTimeAxisColumnConfig = {
|
|
|
5136
5118
|
*/
|
|
5137
5119
|
cellMenuItems?: Record<string, MenuItemEntry>
|
|
5138
5120
|
/**
|
|
5139
|
-
* Child
|
|
5140
|
-
* tasks.
|
|
5141
|
-
* ...
|
|
5142
|
-
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/VerticalTimeAxisColumn#config-children)
|
|
5121
|
+
* Child columns. To create grouped headers, specify an array of column configs as children of a parent column.
|
|
5143
5122
|
*/
|
|
5144
|
-
children?:
|
|
5123
|
+
children?: SchedulerColumnConfig[]|Column[]
|
|
5145
5124
|
/**
|
|
5146
5125
|
* CSS class added to the header of this column
|
|
5147
5126
|
*/
|
|
@@ -9193,6 +9172,13 @@ type AssignmentStoreConfig = {
|
|
|
9193
9172
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore#config-catchEventHandlerExceptions)
|
|
9194
9173
|
*/
|
|
9195
9174
|
catchEventHandlerExceptions?: boolean
|
|
9175
|
+
/**
|
|
9176
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
9177
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
9178
|
+
* ...
|
|
9179
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/AssignmentStore#config-chainExpandCollapse)
|
|
9180
|
+
*/
|
|
9181
|
+
chainExpandCollapse?: boolean
|
|
9196
9182
|
/**
|
|
9197
9183
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
9198
9184
|
* will be ignored.
|
|
@@ -12526,6 +12512,13 @@ type DependencyStoreConfig = {
|
|
|
12526
12512
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore#config-catchEventHandlerExceptions)
|
|
12527
12513
|
*/
|
|
12528
12514
|
catchEventHandlerExceptions?: boolean
|
|
12515
|
+
/**
|
|
12516
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
12517
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
12518
|
+
* ...
|
|
12519
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/DependencyStore#config-chainExpandCollapse)
|
|
12520
|
+
*/
|
|
12521
|
+
chainExpandCollapse?: boolean
|
|
12529
12522
|
/**
|
|
12530
12523
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
12531
12524
|
* will be ignored.
|
|
@@ -14528,6 +14521,13 @@ type EventStoreConfig = {
|
|
|
14528
14521
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-catchEventHandlerExceptions)
|
|
14529
14522
|
*/
|
|
14530
14523
|
catchEventHandlerExceptions?: boolean
|
|
14524
|
+
/**
|
|
14525
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
14526
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
14527
|
+
* ...
|
|
14528
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/EventStore#config-chainExpandCollapse)
|
|
14529
|
+
*/
|
|
14530
|
+
chainExpandCollapse?: boolean
|
|
14531
14531
|
/**
|
|
14532
14532
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
14533
14533
|
* will be ignored.
|
|
@@ -16724,6 +16724,13 @@ type ResourceStoreConfig = {
|
|
|
16724
16724
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore#config-catchEventHandlerExceptions)
|
|
16725
16725
|
*/
|
|
16726
16726
|
catchEventHandlerExceptions?: boolean
|
|
16727
|
+
/**
|
|
16728
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
16729
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
16730
|
+
* ...
|
|
16731
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceStore#config-chainExpandCollapse)
|
|
16732
|
+
*/
|
|
16733
|
+
chainExpandCollapse?: boolean
|
|
16727
16734
|
/**
|
|
16728
16735
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
16729
16736
|
* will be ignored.
|
|
@@ -18680,6 +18687,13 @@ type ResourceTimeRangeStoreConfig = {
|
|
|
18680
18687
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore#config-catchEventHandlerExceptions)
|
|
18681
18688
|
*/
|
|
18682
18689
|
catchEventHandlerExceptions?: boolean
|
|
18690
|
+
/**
|
|
18691
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
18692
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
18693
|
+
* ...
|
|
18694
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/ResourceTimeRangeStore#config-chainExpandCollapse)
|
|
18695
|
+
*/
|
|
18696
|
+
chainExpandCollapse?: boolean
|
|
18683
18697
|
/**
|
|
18684
18698
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
18685
18699
|
* will be ignored.
|
|
@@ -20474,6 +20488,13 @@ type TimeAxisConfig = {
|
|
|
20474
20488
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis#config-catchEventHandlerExceptions)
|
|
20475
20489
|
*/
|
|
20476
20490
|
catchEventHandlerExceptions?: boolean
|
|
20491
|
+
/**
|
|
20492
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
20493
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
20494
|
+
* ...
|
|
20495
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeAxis#config-chainExpandCollapse)
|
|
20496
|
+
*/
|
|
20497
|
+
chainExpandCollapse?: boolean
|
|
20477
20498
|
/**
|
|
20478
20499
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
20479
20500
|
* will be ignored.
|
|
@@ -22264,6 +22285,13 @@ type TimeRangeStoreConfig = {
|
|
|
22264
22285
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore#config-catchEventHandlerExceptions)
|
|
22265
22286
|
*/
|
|
22266
22287
|
catchEventHandlerExceptions?: boolean
|
|
22288
|
+
/**
|
|
22289
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
22290
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
22291
|
+
* ...
|
|
22292
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/data/TimeRangeStore#config-chainExpandCollapse)
|
|
22293
|
+
*/
|
|
22294
|
+
chainExpandCollapse?: boolean
|
|
22267
22295
|
/**
|
|
22268
22296
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
22269
22297
|
* will be ignored.
|
|
@@ -45978,6 +46006,18 @@ export class ResourceModel extends GridRowModel {
|
|
|
45978
46006
|
* the `ResourceTimeRanges` feature.
|
|
45979
46007
|
*/
|
|
45980
46008
|
readonly timeRanges: ResourceTimeRangeModel[]
|
|
46009
|
+
/**
|
|
46010
|
+
* Returns the event on this resource that ends most recently before the given reference.
|
|
46011
|
+
* @param {Date,Scheduler.model.EventModel} reference Date or event before which to look. When an event is supplied, its `startDate` is used as the upper bound and the event itself is excluded from the search.
|
|
46012
|
+
* @param {boolean} respectFilters When `true`, events filtered out of the event store, or whose assignments are filtered out of the assignment store, are skipped.
|
|
46013
|
+
*/
|
|
46014
|
+
getEventEndingBefore(reference: Date|EventModel, respectFilters?: boolean): EventModel|null;
|
|
46015
|
+
/**
|
|
46016
|
+
* Returns the event on this resource that starts soonest after the given reference.
|
|
46017
|
+
* @param {Date,Scheduler.model.EventModel} reference Date or event after which to look. When an event is supplied, its `endDate` is used as the lower bound and the event itself is excluded from the search.
|
|
46018
|
+
* @param {boolean} respectFilters When `true`, events filtered out of the event store, or whose assignments are filtered out of the assignment store, are skipped.
|
|
46019
|
+
*/
|
|
46020
|
+
getEventStartingAfter(reference: Date|EventModel, respectFilters?: boolean): EventModel|null;
|
|
45981
46021
|
/**
|
|
45982
46022
|
* Set value for the specified field(s), triggering engine calculations immediately. See
|
|
45983
46023
|
* [Model#set()](https://bryntum.com/products/scheduler/docs/api/Core/data/Model#function-set) for arguments.
|
|
@@ -47763,6 +47803,18 @@ export class ResourceModelMixinClass {
|
|
|
47763
47803
|
* Set to `false` to not display an avatar for this resource in the [ResourceInfoColumn](https://bryntum.com/products/scheduler/docs/api/Scheduler/column/ResourceInfoColumn)
|
|
47764
47804
|
*/
|
|
47765
47805
|
showAvatar: boolean
|
|
47806
|
+
/**
|
|
47807
|
+
* Returns the event on this resource that ends most recently before the given reference.
|
|
47808
|
+
* @param {Date,Scheduler.model.EventModel} reference Date or event before which to look. When an event is supplied, its `startDate` is used as the upper bound and the event itself is excluded from the search.
|
|
47809
|
+
* @param {boolean} respectFilters When `true`, events filtered out of the event store, or whose assignments are filtered out of the assignment store, are skipped.
|
|
47810
|
+
*/
|
|
47811
|
+
getEventEndingBefore(reference: Date|EventModel, respectFilters?: boolean): EventModel|null;
|
|
47812
|
+
/**
|
|
47813
|
+
* Returns the event on this resource that starts soonest after the given reference.
|
|
47814
|
+
* @param {Date,Scheduler.model.EventModel} reference Date or event after which to look. When an event is supplied, its `endDate` is used as the lower bound and the event itself is excluded from the search.
|
|
47815
|
+
* @param {boolean} respectFilters When `true`, events filtered out of the event store, or whose assignments are filtered out of the assignment store, are skipped.
|
|
47816
|
+
*/
|
|
47817
|
+
getEventStartingAfter(reference: Date|EventModel, respectFilters?: boolean): EventModel|null;
|
|
47766
47818
|
/**
|
|
47767
47819
|
* Set value for the specified field(s), triggering engine calculations immediately. See
|
|
47768
47820
|
* [Model#set()](https://bryntum.com/products/scheduler/docs/api/Core/data/Model#function-set) for arguments.
|
|
@@ -49224,6 +49276,13 @@ type PresetStoreConfig = {
|
|
|
49224
49276
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/PresetStore#config-catchEventHandlerExceptions)
|
|
49225
49277
|
*/
|
|
49226
49278
|
catchEventHandlerExceptions?: boolean
|
|
49279
|
+
/**
|
|
49280
|
+
* Set to `true` to have the chained store react to expand/collapse changes in the master store.
|
|
49281
|
+
* By default, expand/collapse in the master store does not trigger a refill of the chained store.
|
|
49282
|
+
* ...
|
|
49283
|
+
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/preset/PresetStore#config-chainExpandCollapse)
|
|
49284
|
+
*/
|
|
49285
|
+
chainExpandCollapse?: boolean
|
|
49227
49286
|
/**
|
|
49228
49287
|
* If `true`, chained stores will apply filters from the master store. Filters flagged with `ignoreForChain`
|
|
49229
49288
|
* will be ignored.
|
|
@@ -52849,13 +52908,13 @@ type SchedulerListenersTypes = {
|
|
|
52849
52908
|
/**
|
|
52850
52909
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
52851
52910
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
52852
|
-
* case records should be "manually" removed after confirmation
|
|
52911
|
+
* case records should be "manually" removed after confirmation.
|
|
52853
52912
|
* ...
|
|
52854
52913
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)
|
|
52855
52914
|
* @param {object} event Event object
|
|
52856
52915
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
52857
52916
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
52858
|
-
* @param {object} event.context Additional removal context
|
|
52917
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
52859
52918
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
52860
52919
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
52861
52920
|
*/
|
|
@@ -53105,7 +53164,7 @@ type SchedulerListenersTypes = {
|
|
|
53105
53164
|
* @param {object} event Event object
|
|
53106
53165
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
53107
53166
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
53108
|
-
* @param {object} event.context Additional removal context
|
|
53167
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
53109
53168
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
53110
53169
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
53111
53170
|
*/
|
|
@@ -55395,13 +55454,13 @@ type SchedulerListeners = {
|
|
|
55395
55454
|
/**
|
|
55396
55455
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
55397
55456
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
55398
|
-
* case records should be "manually" removed after confirmation
|
|
55457
|
+
* case records should be "manually" removed after confirmation.
|
|
55399
55458
|
* ...
|
|
55400
55459
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)
|
|
55401
55460
|
* @param {object} event Event object
|
|
55402
55461
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
55403
55462
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
55404
|
-
* @param {object} event.context Additional removal context
|
|
55463
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
55405
55464
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
55406
55465
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
55407
55466
|
*/
|
|
@@ -55651,7 +55710,7 @@ type SchedulerListeners = {
|
|
|
55651
55710
|
* @param {object} event Event object
|
|
55652
55711
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
55653
55712
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
55654
|
-
* @param {object} event.context Additional removal context
|
|
55713
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
55655
55714
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
55656
55715
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
55657
55716
|
*/
|
|
@@ -59666,13 +59725,13 @@ type SchedulerConfig = {
|
|
|
59666
59725
|
/**
|
|
59667
59726
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
59668
59727
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
59669
|
-
* case records should be "manually" removed after confirmation
|
|
59728
|
+
* case records should be "manually" removed after confirmation.
|
|
59670
59729
|
* ...
|
|
59671
59730
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)
|
|
59672
59731
|
* @param {object} event Event object
|
|
59673
59732
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
59674
59733
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
59675
|
-
* @param {object} event.context Additional removal context
|
|
59734
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
59676
59735
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
59677
59736
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
59678
59737
|
*/
|
|
@@ -59922,7 +59981,7 @@ type SchedulerConfig = {
|
|
|
59922
59981
|
* @param {object} event Event object
|
|
59923
59982
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
59924
59983
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
59925
|
-
* @param {object} event.context Additional removal context
|
|
59984
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
59926
59985
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
59927
59986
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
59928
59987
|
*/
|
|
@@ -62162,13 +62221,13 @@ export class Scheduler extends SchedulerBase {
|
|
|
62162
62221
|
/**
|
|
62163
62222
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
62164
62223
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
62165
|
-
* case records should be "manually" removed after confirmation
|
|
62224
|
+
* case records should be "manually" removed after confirmation.
|
|
62166
62225
|
* ...
|
|
62167
62226
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/Scheduler#event-beforeAssignmentDelete)
|
|
62168
62227
|
* @param {object} event Event object
|
|
62169
62228
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
62170
62229
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
62171
|
-
* @param {object} event.context Additional removal context
|
|
62230
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
62172
62231
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
62173
62232
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
62174
62233
|
*/
|
|
@@ -62199,7 +62258,7 @@ export class Scheduler extends SchedulerBase {
|
|
|
62199
62258
|
* @param {object} event Event object
|
|
62200
62259
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
62201
62260
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
62202
|
-
* @param {object} event.context Additional removal context
|
|
62261
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
62203
62262
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
62204
62263
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
62205
62264
|
*/
|
|
@@ -62845,13 +62904,13 @@ type SchedulerBaseListenersTypes = {
|
|
|
62845
62904
|
/**
|
|
62846
62905
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
62847
62906
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
62848
|
-
* case records should be "manually" removed after confirmation
|
|
62907
|
+
* case records should be "manually" removed after confirmation.
|
|
62849
62908
|
* ...
|
|
62850
62909
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)
|
|
62851
62910
|
* @param {object} event Event object
|
|
62852
62911
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
62853
62912
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
62854
|
-
* @param {object} event.context Additional removal context
|
|
62913
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
62855
62914
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
62856
62915
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
62857
62916
|
*/
|
|
@@ -63101,7 +63160,7 @@ type SchedulerBaseListenersTypes = {
|
|
|
63101
63160
|
* @param {object} event Event object
|
|
63102
63161
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
63103
63162
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
63104
|
-
* @param {object} event.context Additional removal context
|
|
63163
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
63105
63164
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
63106
63165
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
63107
63166
|
*/
|
|
@@ -65391,13 +65450,13 @@ type SchedulerBaseListeners = {
|
|
|
65391
65450
|
/**
|
|
65392
65451
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
65393
65452
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
65394
|
-
* case records should be "manually" removed after confirmation
|
|
65453
|
+
* case records should be "manually" removed after confirmation.
|
|
65395
65454
|
* ...
|
|
65396
65455
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)
|
|
65397
65456
|
* @param {object} event Event object
|
|
65398
65457
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
65399
65458
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
65400
|
-
* @param {object} event.context Additional removal context
|
|
65459
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
65401
65460
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
65402
65461
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
65403
65462
|
*/
|
|
@@ -65647,7 +65706,7 @@ type SchedulerBaseListeners = {
|
|
|
65647
65706
|
* @param {object} event Event object
|
|
65648
65707
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
65649
65708
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
65650
|
-
* @param {object} event.context Additional removal context
|
|
65709
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
65651
65710
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
65652
65711
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
65653
65712
|
*/
|
|
@@ -69661,13 +69720,13 @@ type SchedulerBaseConfig = {
|
|
|
69661
69720
|
/**
|
|
69662
69721
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
69663
69722
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
69664
|
-
* case records should be "manually" removed after confirmation
|
|
69723
|
+
* case records should be "manually" removed after confirmation.
|
|
69665
69724
|
* ...
|
|
69666
69725
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)
|
|
69667
69726
|
* @param {object} event Event object
|
|
69668
69727
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
69669
69728
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
69670
|
-
* @param {object} event.context Additional removal context
|
|
69729
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
69671
69730
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
69672
69731
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
69673
69732
|
*/
|
|
@@ -69917,7 +69976,7 @@ type SchedulerBaseConfig = {
|
|
|
69917
69976
|
* @param {object} event Event object
|
|
69918
69977
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
69919
69978
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
69920
|
-
* @param {object} event.context Additional removal context
|
|
69979
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
69921
69980
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
69922
69981
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
69923
69982
|
*/
|
|
@@ -72596,7 +72655,7 @@ export class SchedulerBase extends TimelineBase {
|
|
|
72596
72655
|
*/
|
|
72597
72656
|
readonly mode: 'horizontal'|'vertical'
|
|
72598
72657
|
/**
|
|
72599
|
-
* Locking rows
|
|
72658
|
+
* Locking rows results in two chained stores that holds a subset of the records, one for the locked records and one
|
|
72600
72659
|
* for the rest. This property holds the original store, if you need to access it.
|
|
72601
72660
|
*/
|
|
72602
72661
|
originalStore: Store
|
|
@@ -72877,13 +72936,13 @@ export class SchedulerBase extends TimelineBase {
|
|
|
72877
72936
|
/**
|
|
72878
72937
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
72879
72938
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
72880
|
-
* case records should be "manually" removed after confirmation
|
|
72939
|
+
* case records should be "manually" removed after confirmation.
|
|
72881
72940
|
* ...
|
|
72882
72941
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/SchedulerBase#event-beforeAssignmentDelete)
|
|
72883
72942
|
* @param {object} event Event object
|
|
72884
72943
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
72885
72944
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
72886
|
-
* @param {object} event.context Additional removal context
|
|
72945
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
72887
72946
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
72888
72947
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
72889
72948
|
*/
|
|
@@ -73022,7 +73081,7 @@ export class SchedulerBase extends TimelineBase {
|
|
|
73022
73081
|
* @param {object} event Event object
|
|
73023
73082
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
73024
73083
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
73025
|
-
* @param {object} event.context Additional removal context
|
|
73084
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
73026
73085
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
73027
73086
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
73028
73087
|
*/
|
|
@@ -75035,13 +75094,13 @@ type TimelineBaseListenersTypes = {
|
|
|
75035
75094
|
/**
|
|
75036
75095
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
75037
75096
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
75038
|
-
* case records should be "manually" removed after confirmation
|
|
75097
|
+
* case records should be "manually" removed after confirmation.
|
|
75039
75098
|
* ...
|
|
75040
75099
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#event-beforeAssignmentDelete)
|
|
75041
75100
|
* @param {object} event Event object
|
|
75042
75101
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
75043
75102
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
75044
|
-
* @param {object} event.context Additional removal context
|
|
75103
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
75045
75104
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
75046
75105
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
75047
75106
|
*/
|
|
@@ -75156,7 +75215,7 @@ type TimelineBaseListenersTypes = {
|
|
|
75156
75215
|
* @param {object} event Event object
|
|
75157
75216
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
75158
75217
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
75159
|
-
* @param {object} event.context Additional removal context
|
|
75218
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
75160
75219
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
75161
75220
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
75162
75221
|
*/
|
|
@@ -76214,13 +76273,13 @@ type TimelineBaseListeners = {
|
|
|
76214
76273
|
/**
|
|
76215
76274
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
76216
76275
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
76217
|
-
* case records should be "manually" removed after confirmation
|
|
76276
|
+
* case records should be "manually" removed after confirmation.
|
|
76218
76277
|
* ...
|
|
76219
76278
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#event-beforeAssignmentDelete)
|
|
76220
76279
|
* @param {object} event Event object
|
|
76221
76280
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
76222
76281
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
76223
|
-
* @param {object} event.context Additional removal context
|
|
76282
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
76224
76283
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
76225
76284
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
76226
76285
|
*/
|
|
@@ -76335,7 +76394,7 @@ type TimelineBaseListeners = {
|
|
|
76335
76394
|
* @param {object} event Event object
|
|
76336
76395
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
76337
76396
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
76338
|
-
* @param {object} event.context Additional removal context
|
|
76397
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
76339
76398
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
76340
76399
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
76341
76400
|
*/
|
|
@@ -78499,13 +78558,13 @@ type TimelineBaseConfig = {
|
|
|
78499
78558
|
/**
|
|
78500
78559
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
78501
78560
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
78502
|
-
* case records should be "manually" removed after confirmation
|
|
78561
|
+
* case records should be "manually" removed after confirmation.
|
|
78503
78562
|
* ...
|
|
78504
78563
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#event-beforeAssignmentDelete)
|
|
78505
78564
|
* @param {object} event Event object
|
|
78506
78565
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
78507
78566
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
78508
|
-
* @param {object} event.context Additional removal context
|
|
78567
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
78509
78568
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
78510
78569
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
78511
78570
|
*/
|
|
@@ -78620,7 +78679,7 @@ type TimelineBaseConfig = {
|
|
|
78620
78679
|
* @param {object} event Event object
|
|
78621
78680
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
78622
78681
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
78623
|
-
* @param {object} event.context Additional removal context
|
|
78682
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
78624
78683
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
78625
78684
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
78626
78685
|
*/
|
|
@@ -79960,13 +80019,13 @@ export abstract class TimelineBase extends Grid {
|
|
|
79960
80019
|
/**
|
|
79961
80020
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
79962
80021
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
79963
|
-
* case records should be "manually" removed after confirmation
|
|
80022
|
+
* case records should be "manually" removed after confirmation.
|
|
79964
80023
|
* ...
|
|
79965
80024
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#event-beforeAssignmentDelete)
|
|
79966
80025
|
* @param {object} event Event object
|
|
79967
80026
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
79968
80027
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
79969
|
-
* @param {object} event.context Additional removal context
|
|
80028
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
79970
80029
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
79971
80030
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
79972
80031
|
*/
|
|
@@ -79986,7 +80045,7 @@ export abstract class TimelineBase extends Grid {
|
|
|
79986
80045
|
* @param {object} event Event object
|
|
79987
80046
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
79988
80047
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
79989
|
-
* @param {object} event.context Additional removal context
|
|
80048
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
79990
80049
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
79991
80050
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
79992
80051
|
*/
|
|
@@ -80583,13 +80642,13 @@ type TimelineHistogramListenersTypes = {
|
|
|
80583
80642
|
/**
|
|
80584
80643
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
80585
80644
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
80586
|
-
* case records should be "manually" removed after confirmation
|
|
80645
|
+
* case records should be "manually" removed after confirmation.
|
|
80587
80646
|
* ...
|
|
80588
80647
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)
|
|
80589
80648
|
* @param {object} event Event object
|
|
80590
80649
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
80591
80650
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
80592
|
-
* @param {object} event.context Additional removal context
|
|
80651
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
80593
80652
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
80594
80653
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
80595
80654
|
*/
|
|
@@ -80704,7 +80763,7 @@ type TimelineHistogramListenersTypes = {
|
|
|
80704
80763
|
* @param {object} event Event object
|
|
80705
80764
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
80706
80765
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
80707
|
-
* @param {object} event.context Additional removal context
|
|
80766
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
80708
80767
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
80709
80768
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
80710
80769
|
*/
|
|
@@ -81988,13 +82047,13 @@ type TimelineHistogramListeners = {
|
|
|
81988
82047
|
/**
|
|
81989
82048
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
81990
82049
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
81991
|
-
* case records should be "manually" removed after confirmation
|
|
82050
|
+
* case records should be "manually" removed after confirmation.
|
|
81992
82051
|
* ...
|
|
81993
82052
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)
|
|
81994
82053
|
* @param {object} event Event object
|
|
81995
82054
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
81996
82055
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
81997
|
-
* @param {object} event.context Additional removal context
|
|
82056
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
81998
82057
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
81999
82058
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
82000
82059
|
*/
|
|
@@ -82109,7 +82168,7 @@ type TimelineHistogramListeners = {
|
|
|
82109
82168
|
* @param {object} event Event object
|
|
82110
82169
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
82111
82170
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
82112
|
-
* @param {object} event.context Additional removal context
|
|
82171
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
82113
82172
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
82114
82173
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
82115
82174
|
*/
|
|
@@ -84722,13 +84781,13 @@ type TimelineHistogramConfig = {
|
|
|
84722
84781
|
/**
|
|
84723
84782
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
84724
84783
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
84725
|
-
* case records should be "manually" removed after confirmation
|
|
84784
|
+
* case records should be "manually" removed after confirmation.
|
|
84726
84785
|
* ...
|
|
84727
84786
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)
|
|
84728
84787
|
* @param {object} event Event object
|
|
84729
84788
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
84730
84789
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
84731
|
-
* @param {object} event.context Additional removal context
|
|
84790
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
84732
84791
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
84733
84792
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
84734
84793
|
*/
|
|
@@ -84843,7 +84902,7 @@ type TimelineHistogramConfig = {
|
|
|
84843
84902
|
* @param {object} event Event object
|
|
84844
84903
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
84845
84904
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
84846
|
-
* @param {object} event.context Additional removal context
|
|
84905
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
84847
84906
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
84848
84907
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
84849
84908
|
*/
|
|
@@ -86799,7 +86858,7 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
86799
86858
|
*/
|
|
86800
86859
|
readonly nextSibling: Widget
|
|
86801
86860
|
/**
|
|
86802
|
-
* Locking rows
|
|
86861
|
+
* Locking rows results in two chained stores that holds a subset of the records, one for the locked records and one
|
|
86803
86862
|
* for the rest. This property holds the original store, if you need to access it.
|
|
86804
86863
|
*/
|
|
86805
86864
|
originalStore: Store
|
|
@@ -87133,13 +87192,13 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
87133
87192
|
/**
|
|
87134
87193
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
87135
87194
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
87136
|
-
* case records should be "manually" removed after confirmation
|
|
87195
|
+
* case records should be "manually" removed after confirmation.
|
|
87137
87196
|
* ...
|
|
87138
87197
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogram#event-beforeAssignmentDelete)
|
|
87139
87198
|
* @param {object} event Event object
|
|
87140
87199
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
87141
87200
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
87142
|
-
* @param {object} event.context Additional removal context
|
|
87201
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
87143
87202
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
87144
87203
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
87145
87204
|
*/
|
|
@@ -87159,7 +87218,7 @@ export class TimelineHistogram extends TimelineHistogramBase {
|
|
|
87159
87218
|
* @param {object} event Event object
|
|
87160
87219
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
87161
87220
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
87162
|
-
* @param {object} event.context Additional removal context
|
|
87221
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
87163
87222
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
87164
87223
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
87165
87224
|
*/
|
|
@@ -88745,13 +88804,13 @@ type TimelineHistogramBaseListenersTypes = {
|
|
|
88745
88804
|
/**
|
|
88746
88805
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
88747
88806
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
88748
|
-
* case records should be "manually" removed after confirmation
|
|
88807
|
+
* case records should be "manually" removed after confirmation.
|
|
88749
88808
|
* ...
|
|
88750
88809
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#event-beforeAssignmentDelete)
|
|
88751
88810
|
* @param {object} event Event object
|
|
88752
88811
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
88753
88812
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
88754
|
-
* @param {object} event.context Additional removal context
|
|
88813
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
88755
88814
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
88756
88815
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
88757
88816
|
*/
|
|
@@ -88866,7 +88925,7 @@ type TimelineHistogramBaseListenersTypes = {
|
|
|
88866
88925
|
* @param {object} event Event object
|
|
88867
88926
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
88868
88927
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
88869
|
-
* @param {object} event.context Additional removal context
|
|
88928
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
88870
88929
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
88871
88930
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
88872
88931
|
*/
|
|
@@ -89965,13 +90024,13 @@ type TimelineHistogramBaseListeners = {
|
|
|
89965
90024
|
/**
|
|
89966
90025
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
89967
90026
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
89968
|
-
* case records should be "manually" removed after confirmation
|
|
90027
|
+
* case records should be "manually" removed after confirmation.
|
|
89969
90028
|
* ...
|
|
89970
90029
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#event-beforeAssignmentDelete)
|
|
89971
90030
|
* @param {object} event Event object
|
|
89972
90031
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
89973
90032
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
89974
|
-
* @param {object} event.context Additional removal context
|
|
90033
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
89975
90034
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
89976
90035
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
89977
90036
|
*/
|
|
@@ -90086,7 +90145,7 @@ type TimelineHistogramBaseListeners = {
|
|
|
90086
90145
|
* @param {object} event Event object
|
|
90087
90146
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
90088
90147
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
90089
|
-
* @param {object} event.context Additional removal context
|
|
90148
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
90090
90149
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
90091
90150
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
90092
90151
|
*/
|
|
@@ -92428,13 +92487,13 @@ type TimelineHistogramBaseConfig = {
|
|
|
92428
92487
|
/**
|
|
92429
92488
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
92430
92489
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
92431
|
-
* case records should be "manually" removed after confirmation
|
|
92490
|
+
* case records should be "manually" removed after confirmation.
|
|
92432
92491
|
* ...
|
|
92433
92492
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#event-beforeAssignmentDelete)
|
|
92434
92493
|
* @param {object} event Event object
|
|
92435
92494
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
92436
92495
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
92437
|
-
* @param {object} event.context Additional removal context
|
|
92496
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
92438
92497
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
92439
92498
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
92440
92499
|
*/
|
|
@@ -92549,7 +92608,7 @@ type TimelineHistogramBaseConfig = {
|
|
|
92549
92608
|
* @param {object} event Event object
|
|
92550
92609
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
92551
92610
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
92552
|
-
* @param {object} event.context Additional removal context
|
|
92611
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
92553
92612
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
92554
92613
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
92555
92614
|
*/
|
|
@@ -93669,13 +93728,13 @@ export abstract class TimelineHistogramBase extends TimelineBase {
|
|
|
93669
93728
|
/**
|
|
93670
93729
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
93671
93730
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
93672
|
-
* case records should be "manually" removed after confirmation
|
|
93731
|
+
* case records should be "manually" removed after confirmation.
|
|
93673
93732
|
* ...
|
|
93674
93733
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineHistogramBase#event-beforeAssignmentDelete)
|
|
93675
93734
|
* @param {object} event Event object
|
|
93676
93735
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
93677
93736
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
93678
|
-
* @param {object} event.context Additional removal context
|
|
93737
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
93679
93738
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
93680
93739
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
93681
93740
|
*/
|
|
@@ -93695,7 +93754,7 @@ export abstract class TimelineHistogramBase extends TimelineBase {
|
|
|
93695
93754
|
* @param {object} event Event object
|
|
93696
93755
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
93697
93756
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
93698
|
-
* @param {object} event.context Additional removal context
|
|
93757
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
93699
93758
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
93700
93759
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
93701
93760
|
*/
|
|
@@ -95806,13 +95865,13 @@ type RecurringEventsClassConfig = {
|
|
|
95806
95865
|
/**
|
|
95807
95866
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
95808
95867
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
95809
|
-
* case records should be "manually" removed after confirmation
|
|
95868
|
+
* case records should be "manually" removed after confirmation.
|
|
95810
95869
|
* ...
|
|
95811
95870
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/RecurringEvents#event-beforeAssignmentDelete)
|
|
95812
95871
|
* @param {object} event Event object
|
|
95813
95872
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
95814
95873
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
95815
|
-
* @param {object} event.context Additional removal context
|
|
95874
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
95816
95875
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
95817
95876
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
95818
95877
|
*/
|
|
@@ -95826,7 +95885,7 @@ type RecurringEventsClassConfig = {
|
|
|
95826
95885
|
* @param {object} event Event object
|
|
95827
95886
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
95828
95887
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
95829
|
-
* @param {object} event.context Additional removal context
|
|
95888
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
95830
95889
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
95831
95890
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
95832
95891
|
*/
|
|
@@ -95849,13 +95908,13 @@ export class RecurringEventsClass {
|
|
|
95849
95908
|
/**
|
|
95850
95909
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
95851
95910
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
95852
|
-
* case records should be "manually" removed after confirmation
|
|
95911
|
+
* case records should be "manually" removed after confirmation.
|
|
95853
95912
|
* ...
|
|
95854
95913
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/RecurringEvents#event-beforeAssignmentDelete)
|
|
95855
95914
|
* @param {object} event Event object
|
|
95856
95915
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
95857
95916
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
95858
|
-
* @param {object} event.context Additional removal context
|
|
95917
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
95859
95918
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
95860
95919
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
95861
95920
|
*/
|
|
@@ -95869,7 +95928,7 @@ export class RecurringEventsClass {
|
|
|
95869
95928
|
* @param {object} event Event object
|
|
95870
95929
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
95871
95930
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
95872
|
-
* @param {object} event.context Additional removal context
|
|
95931
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
95873
95932
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
95874
95933
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
95875
95934
|
*/
|
|
@@ -97435,13 +97494,13 @@ type TimelineHistogramGroupingClassListenersTypes = {
|
|
|
97435
97494
|
/**
|
|
97436
97495
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
97437
97496
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
97438
|
-
* case records should be "manually" removed after confirmation
|
|
97497
|
+
* case records should be "manually" removed after confirmation.
|
|
97439
97498
|
* ...
|
|
97440
97499
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#event-beforeAssignmentDelete)
|
|
97441
97500
|
* @param {object} event Event object
|
|
97442
97501
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
97443
97502
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
97444
|
-
* @param {object} event.context Additional removal context
|
|
97503
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
97445
97504
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
97446
97505
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
97447
97506
|
*/
|
|
@@ -97556,7 +97615,7 @@ type TimelineHistogramGroupingClassListenersTypes = {
|
|
|
97556
97615
|
* @param {object} event Event object
|
|
97557
97616
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
97558
97617
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
97559
|
-
* @param {object} event.context Additional removal context
|
|
97618
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
97560
97619
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
97561
97620
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
97562
97621
|
*/
|
|
@@ -98655,13 +98714,13 @@ type TimelineHistogramGroupingClassListeners = {
|
|
|
98655
98714
|
/**
|
|
98656
98715
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
98657
98716
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
98658
|
-
* case records should be "manually" removed after confirmation
|
|
98717
|
+
* case records should be "manually" removed after confirmation.
|
|
98659
98718
|
* ...
|
|
98660
98719
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#event-beforeAssignmentDelete)
|
|
98661
98720
|
* @param {object} event Event object
|
|
98662
98721
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
98663
98722
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
98664
|
-
* @param {object} event.context Additional removal context
|
|
98723
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
98665
98724
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
98666
98725
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
98667
98726
|
*/
|
|
@@ -98776,7 +98835,7 @@ type TimelineHistogramGroupingClassListeners = {
|
|
|
98776
98835
|
* @param {object} event Event object
|
|
98777
98836
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
98778
98837
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
98779
|
-
* @param {object} event.context Additional removal context
|
|
98838
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
98780
98839
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
98781
98840
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
98782
98841
|
*/
|
|
@@ -101151,13 +101210,13 @@ type TimelineHistogramGroupingClassConfig = {
|
|
|
101151
101210
|
/**
|
|
101152
101211
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
101153
101212
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
101154
|
-
* case records should be "manually" removed after confirmation
|
|
101213
|
+
* case records should be "manually" removed after confirmation.
|
|
101155
101214
|
* ...
|
|
101156
101215
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#event-beforeAssignmentDelete)
|
|
101157
101216
|
* @param {object} event Event object
|
|
101158
101217
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
101159
101218
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
101160
|
-
* @param {object} event.context Additional removal context
|
|
101219
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
101161
101220
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
101162
101221
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
101163
101222
|
*/
|
|
@@ -101272,7 +101331,7 @@ type TimelineHistogramGroupingClassConfig = {
|
|
|
101272
101331
|
* @param {object} event Event object
|
|
101273
101332
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
101274
101333
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
101275
|
-
* @param {object} event.context Additional removal context
|
|
101334
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
101276
101335
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
101277
101336
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
101278
101337
|
*/
|
|
@@ -102376,13 +102435,13 @@ export class TimelineHistogramGroupingClass extends TimelineHistogramBase {
|
|
|
102376
102435
|
/**
|
|
102377
102436
|
* Fires before an assignment is removed. Can be triggered by user pressing <kbd>Delete</kbd> or <kbd>Backspace</kbd> or
|
|
102378
102437
|
* by the event editor. Can for example be used to display a custom dialog to confirm deletion, in which
|
|
102379
|
-
* case records should be "manually" removed after confirmation
|
|
102438
|
+
* case records should be "manually" removed after confirmation.
|
|
102380
102439
|
* ...
|
|
102381
102440
|
* [View online docs...](https://bryntum.com/products/scheduler/docs/api/Scheduler/view/mixin/TimelineHistogramGrouping#event-beforeAssignmentDelete)
|
|
102382
102441
|
* @param {object} event Event object
|
|
102383
102442
|
* @param {Scheduler.view.Scheduler} event.source The Scheduler instance
|
|
102384
102443
|
* @param {Scheduler.model.AssignmentModel[]} event.assignmentRecords The assignment records about to be deleted
|
|
102385
|
-
* @param {object} event.context Additional removal context
|
|
102444
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
102386
102445
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
102387
102446
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
102388
102447
|
*/
|
|
@@ -102402,7 +102461,7 @@ export class TimelineHistogramGroupingClass extends TimelineHistogramBase {
|
|
|
102402
102461
|
* @param {object} event Event object
|
|
102403
102462
|
* @param {Scheduler.view.Scheduler,any} event.source The Scheduler instance
|
|
102404
102463
|
* @param {Scheduler.model.EventModel[]} event.eventRecords The records about to be deleted
|
|
102405
|
-
* @param {object} event.context Additional removal context
|
|
102464
|
+
* @param {object} event.context Additional removal context. This allows you to process the deletion by calling `context.finalize()` if you return `false` from the event handler.
|
|
102406
102465
|
* @param {Function} event.context.finalize Function to call to finalize the removal. Used to asynchronously decide to remove the records or not. Provide `false` to the function to prevent the removal.
|
|
102407
102466
|
* @param {boolean} event.context.finalize.removeRecords Provide `false` to the function to prevent the removal.
|
|
102408
102467
|
*/
|