v7.3.0

StickyEvents
Feature

This feature applies native position: sticky to event contents in horizontal mode, keeping the contents in view as long as possible on scroll. For vertical mode it uses a programmatic solution to achieve the same result.

Assign eventRecord.stickyContents = false to disable stickiness on a per event level (docs for stickyContents).

This feature is enabled by default.

const scheduler = new Scheduler({
    features : {
        stickyEvents : false // Disable sticky event contents
    }
});

If a complex eventRenderer is used to create a DOM structure within the .b-sch-event-content element, then application CSS will need to be written to cancel the stickiness on the .b-sch-event-content element, and make some inner content element(s) sticky.

See also

No results

Properties

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

Source path

Scheduler/feature/StickyEvents.js

Contents