v7.3.0
SupportExamplesFree Trial

CalendarHighlight
Feature

This feature temporarily visualizes calendars for the event or resource calendar (controlled by the calendar config). The calendars are highlighted while a user is creating, dragging or resizing a task. Enabling this feature makes it easier for the end user to understand the underlying rules of the schedule.

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), endDate : new Date(2022, 4, 29), columns : [ { field : 'name', text : 'Name', width : 100 } ], features : { eventDrag : { snapToResource : true }, dependencies : false, scheduleTooltip : false, calendarHighlight : true }, project : { calendarManagerStore : { validateForCalendarEditorOnLoad : false }, resources : [ { id : 1, name : 'Bernard' }, { id : 2, name : 'Bianca' } ], events : [ { id : 1, name : 'Drag me', startDate : '2022-05-18', duration : 2, resizable : false, calendar : 'inspection' } ], assignments : [ { id : 1, event : 1, resource : 1 } ], calendars : [ { id : 'inspection', name : 'Inspection period May 16-23', unspecifiedTimeIsWorking : false, intervals : [ { name : 'Inspection period', startDate : '2022-05-16', endDate : '2022-05-24', isWorking : true } ] } ] }, getDateConstraints(resourceRecord, eventRecord) { if (eventRecord) { const { startDate, endDate } = eventRecord.effectiveCalendar.intervals.first; if (startDate) { return { start : startDate, end : endDate }; } } } }); (async() => { await schedulerPro.project.commitAsync(); if (!schedulerPro.isDestroyed) { schedulerPro.features.calendarHighlight.highlightEventCalendars(schedulerPro.eventStore.first); } })();

Example usage

new SchedulerPro({
    features : {
        calendarHighlight : {
            // visualize resource calendars while interacting with events
            calendar : 'resource'
        }
    }
})

This feature is disabled by default.

Useful configs

Config Description
calendar Which calendar to highlight (event or resource)
collectAvailableResources Callback to filter available resources
inflate Expand or shrink the highlight box in pixels

See also

No results

Configs

Configs are options you supply in a configuration object when creating an instance of this class
  • calendar : 'event'/'resource'event

    A string defining which calendar(s) to highlight during drag drop, resize or create flows. Valid values are event or resource.

  • 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.

  • Specify value to use for the tabIndex attribute of range elements

Properties

Properties are getters/setters or publicly accessible variables on this class
  • isCalendarHighlight : Booleantrue
    READONLY
    static
    ADVANCED
    Identifies an object as an instance of CalendarHighlight class, or subclass thereof.
  • isEvents : Booleantrue
    READONLY
    static
    ADVANCED
    Events
    Identifies an object as an instance of Events class, or subclass thereof.
  • isLocalizable : Booleantrue
    READONLY
    static
    ADVANCED
    Localizable
    Identifies an object as an instance of Localizable class, or subclass thereof.
  • A class property getter for the default values of internal properties for this class.

  • A number allowing you to expand or shrink (using a negative number) the highlighted box.

    Has a corresponding inflate config.

  • An empty array that can be used as a default value.

  • An empty object that can be used as a default value.

  • isCalendarHighlight : Booleantrue
    READONLY
    ADVANCED
    Identifies an object as an instance of CalendarHighlight class, or subclass thereof.
  • Identifies an object as an instance of InstancePlugin class, or subclass thereof.
  • Identifies an object as an instance of ResourceTimeRangesBase 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

  • Removes all highlight elements.

  • Internal function used to hook destroy() calls when using thisObj

  • Internal function used restore hooked destroy() calls when using thisObj

  • doDestroy( )
    internal
    Events

    Auto detaches listeners registered from start, if set as detachable

  • once( )
    private
    Events

    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

CSS variables

CSS variables that can be set to adjust appearance
Name Description
--b-calendar-highlight-background Highlight background color
--b-calendar-highlight-background-transparency Highlight background transparency (primary is color mixed with transparent xx)
--b-calendar-highlight-border-color Highlight border color
--b-calendar-highlight-border-style Highlight border style
--b-calendar-highlight-border-width Highlight border width
--b-calendar-highlight-color Highlight text color
id: calendarHighlight

Source path

SchedulerPro/feature/CalendarHighlight.js

Demo

examples/highlight-event-calendars

Contents