v7.3.0

EventSelection
Mixin

Mixin that tracks event or assignment selection by clicking on one or more events in the scheduler. It supports single selection, multi-select with Ctrl/Cmd click, and range selection with Shift click.

const scheduler = new Scheduler({
    multiEventSelect : true,

listeners : { eventSelectionChange({ selection }) { console.log('Selected events:', selection); } } });

See also

No results

Configs

Configs are options you supply in a configuration object when creating an instance of this class

Properties

Properties are getters/setters or publicly accessible variables on this class

Functions

Functions are methods available for calling on the class

    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

    Source path

    Scheduler/view/mixin/EventSelection.js

    Contents