v7.3.0

SimpleEventEdit
Feature

Feature that displays a text field to edit the event name.

You can control the flow of this by listening to the events relayed by this class from the underlying Editor.

To use this feature, you also need to disable the built-in default editing feature:

const scheduler = new Scheduler({
    features : {
        eventEdit       : false,
        simpleEventEdit : true
    }
});

This feature is disabled by default. For info on enabling it, see GridFeatures.

Useful configs and functions

Member Description
beforeStart Fires before inline editing starts
start Fires when editing starts
beforeComplete Fires before editing completes
complete Fires when editing completes
beforeCancel Fires before editing is cancelled
cancel Fires when editing is cancelled

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

    CSS variables

    CSS variables that can be set to adjust appearance
    Name Description
    --b-simple-event-edit-editor-background Background of the editor
    id: simpleEventEdit

    Source path

    Scheduler/feature/SimpleEventEdit.js

    Demo

    examples/simpleeditor

    Contents