TimeSpanHighlight
Feature
This feature exposes methods on the owning Scheduler or Gantt widget which you can use to highlight one or multiple time spans in the schedule. Please see highlightTimeSpan and highlightTimeSpans to learn more or try the demo below:
const schedulerPro = new SchedulerPro({ appendTo : targetElement, // makes scheduler as high as it needs to be to fit rows autoHeight : true, snap : true, startDate : new Date(2022, 4, 15, 10), endDate : new Date(2022, 4, 15, 17), viewPreset : 'hourAndDay', forceFit : true, columns : [ { field : 'name', text : 'Hairdressers', width : 100 }, { type : 'widget', width : 120, text : 'Availability', align : 'center', widgets : [{ type : 'button', text : 'Show', onClick : ({ source }) => { let availability; const resourceRecord = source.cellInfo.record; switch (resourceRecord.name) { case 'Benjamin': availability = [ { resourceRecord, name : 'Available ($40/h)', startDate : new Date(2022, 4, 15, 10), endDate : new Date(2022, 4, 15, 13) } ]; break; case 'Bianca': availability = [ { resourceRecord, name : 'Available ($60/h)', startDate : new Date(2022, 4, 15, 11), endDate : new Date(2022, 4, 15, 13) }, { resourceRecord, name : 'Available ($50/h)', startDate : new Date(2022, 4, 15, 14), endDate : new Date(2022, 4, 15, 16) } ]; break; case 'Sebastian': availability = [ { resourceRecord, name : 'Available (10/h)', startDate : new Date(2022, 4, 15, 10), endDate : new Date(2022, 4, 15, 12) }, { resourceRecord, name : 'Available (50/h)', startDate : new Date(2022, 4, 15, 14), endDate : new Date(2022, 4, 15, 16) } ]; break; case 'Emilio': availability = [ { resourceRecord, name : 'Available (80/h)', startDate : new Date(2022, 4, 15, 10), endDate : new Date(2022, 4, 15, 14) } ]; break; } schedulerPro.highlightTimeSpans(availability); } }] } ], features : { eventDrag : { snapToResource : true }, scheduleTooltip : false, timeSpanHighlight : true }, tbar : [ { text : 'Clear highlight', onAction() { schedulerPro.unhighlightTimeSpans(); } } ], project : { resources : [ { id : 1, name : 'Benjamin' }, { id : 2, name : 'Bianca' }, { id : 3, name : 'Sebastian' }, { id : 4, name : 'Emilio' } ], events : [ { id : 1, name : 'Crew cut', startDate : '2022-05-15T14:00:00', duration : 1.5, durationUnit : 'h', iconCls : 'fa fa-cut' }, { id : 2, name : 'Dye hair', startDate : '2022-05-15T12:00:00', duration : 2, durationUnit : 'h', iconCls : 'fa fa-female' } ], assignments : [ { id : 1, event : 1, resource : 1 }, { id : 2, event : 2, resource : 3 } ] } }); schedulerPro.highlightTimeSpan({ startDate : new Date(2022, 4, 15, 11), endDate : new Date(2022, 4, 15, 16), surround : true, name : 'Away' });
Example usage with Scheduler Pro
const scheduler = new SchedulerPro({
features : {
timeSpanHighlight : true
}
})
scheduler.highlightTimeSpan({
startDate : new Date(2022, 4, 1),
endDate : new Date(2022, 4, 5),
name : 'Time off'
});
Example usage with Gantt
const gantt = new Gantt({
features : {
timeSpanHighlight : true
}
})
gantt.highlightTimeSpan({
startDate : new Date(2022, 4, 1),
endDate : new Date(2022, 4, 5),
padding : 10, // Some "air" around the rectangle
taskRecord, // You can also highlight an area specific to a Gantt task
name : 'Time off'
});
This feature is disabled by default.
See also
- SchedulerPro — The Scheduler Pro view this feature plugs into
- TimeRanges — Renders static or recurring time range indicators
- TimeSpan — The time span model used for date ranges
No results
Configs
Configs are options you supply in a configuration object when creating an instance of this class
-
Internal listeners, that cannot be removed by the user.
-
The widget which this plugin is to attach to.
Has a corresponding runtime client property.
-
Set to false to disable localization of this object.
Properties
Properties are getters/setters or publicly accessible variables on this class
-
Identifies an object as an instance of Events class, or subclass thereof.
-
Identifies an object as an instance of Localizable class, or subclass thereof.
-
Identifies an object as an instance of TimeSpanHighlight class, or subclass thereof.
-
A class property getter for the default values of internal properties for this class.
-
An empty array that can be used as a default value.
-
An empty object that can be used as a default value.
-
Identifies an object as an instance of InstancePlugin class, or subclass thereof.
-
Identifies an object as an instance of TimeSpanHighlight class, or subclass thereof.
-
Returns a copy of the full configuration which was used to configure this object.
-
This property is set to true before the constructor returns.
-
This property is set to true on entry to the destroy method. It remains on the objects after returning from destroy(). If isDestroyed is true, this property will also be true, so there is no need to test for both (for example, comp.isDestroying || comp.isDestroyed).
-
The Widget which was passed into the constructor, which is the Widget we are providing extra services for.
Has a corresponding client config.
-
Get the global LocaleHelper
-
Get the global LocaleManager
Functions
Functions are methods available for calling on the class
-
This optional class method is called when a class is mixed in using the mixin() method.
-
Registers this class type with its Factory
-
Internal function used to hook destroy() calls when using thisObj
-
Internal function used restore hooked destroy() calls when using thisObj
-
Auto detaches listeners registered from start, if set as detachable
-
Internal function used to run a callback function after an event is triggered
-
Removes all listeners registered to this object by the application.
-
This will merge a feature's (subclass of InstancePlugin) keyMap with it's client's keyMap.
Events
Events are triggered for certain actions in this class and can be listened for to react to those actions in your code
Event handlers
Event handlers are callbacks called as a result of certain actions in this class
Type definitions
CSS variables
CSS variables that can be set to adjust appearance
Name
Description
--b-time-span-highlight-range-background
Time span highlight range background
--b-time-span-highlight-range-border-color
Time span highlight range border color
--b-time-span-highlight-range-color
Time span highlight range color
--b-time-span-highlight-range-font-size
Time span highlight range font-size
--b-time-span-highlight-range-opacity
Time span highlight range opacity
--b-time-span-highlight-unavailable-background
Time span highlight unavailable background
--b-time-span-highlight-unavailable-color
Time span highlight unavailable color
id: timeSpanHighlight
Source path
SchedulerPro/feature/TimeSpanHighlight.js
Demo
examples/highlight-time-spans
Contents