An issues-only repository for the Bryntum project management component suite which includes powerful Grid, Scheduler, Calendar, Kanban Task Board and Gantt chart components all built in pure JS / CSS / TypeScript
For example EventEdit fires several events through its owner. The docs only adds these events to SchedulerBase.
The EventEdit base class is used by Calendar, so those events also need to be added to the Calendar class. This is quite important since lots of people ask how to veto the beforeEventEdit event, and it's only documented on the Feature.
Plus, there's a ticket to remove on-owner events from the Feature class documentation, so that would mean that in Calendar, these events are completely undocumented: https://github.com/bryntum/support/issues/6616
The EventCopyPaste feature, and the EventMenu feature also inherit event docs from base classes.
For example
EventEdit
fires several events through its owner. The docs only adds these events toSchedulerBase
.The
EventEdit
base class is used byCalendar
, so those events also need to be added to theCalendar class
. This is quite important since lots of people ask how to veto thebeforeEventEdit
event, and it's only documented on the Feature.Plus, there's a ticket to remove on-owner events from the Feature class documentation, so that would mean that in
Calendar
, these events are completely undocumented: https://github.com/bryntum/support/issues/6616The
EventCopyPaste
feature, and theEventMenu
feature also inherit event docs from base classes.