Skip to main content
.NET 6.0+

SchedulerListEditorBase Class

An abstract class that serves as the base class for the Scheduling List Editors from the Scheduler module.

Namespace: DevExpress.ExpressApp.Scheduler

Assembly: DevExpress.ExpressApp.Scheduler.v23.2.dll

Declaration

public abstract class SchedulerListEditorBase :
    ListEditor,
    IControlOrderProvider,
    IOrderProvider,
    IComplexListEditor,
    ISupportUpdate

Remarks

List Editors are used by List Views to display object collections in a UI. Scheduling List Editors are the best way to present and manage schedule information. These List Editors are targeted for objects that implement the IEvent interface from the Business Class Library. The SchedulerListEditorBase class declares members common to all the built-in Scheduling List Editors.

SchedulerListEditorBase is an abstract class and cannot be instantiated. However, it exposes the following public events that are not defined in the base ListEditor class.

Name Type Description
SchedulerListEditorBase.ExceptionEventCreated Event Occurs when an exceptional Event occurrence is created.
SchedulerListEditorBase.ResourceDataSourceCreating Event Occurs before the resources data source has been instantiated.
SchedulerListEditorBase.ResourceDataSourceCreated Event Occurs after the resources data source has been instantiated.

The SchedulerListEditorBase is the base class from which all the built-in Scheduler List Editors are inherited. The following table lists XAF’s built-in Scheduler List Editors.

Platform List Editor
ASP.NET Core Blazor DevExpress.ExpressApp.Scheduler.Blazor.Editors.SchedulerListEditor
Windows Forms SchedulerListEditor
ASP.NET Web Forms ASPxSchedulerListEditor

For additional information on the Scheduling List Editors, refer to the Scheduler Module topic.

See Also