Skip to main content

SchedulerStatusInfoSettings - Overview

Scheduler Status Info contains notification of errors that need user attention.

The Scheduler Status Info element can be used to indicate errors and invalid values on the appointment form, as illustrated in the Custom Forms online demo.

Implementation Details

The SchedulerStatusInfoSettings is represented by the SchedulerStatusInfoSettings class. Its instance can be accessed via the ExtensionsFactory.SchedulerStatusInfo helper method, which is used to specify Scheduler Status Info settings in a view.

Declaration

Specify Scheduler Status Info settings in a view in the following manner.

View (Razor syntax):

@Html.DevExpress().SchedulerStatusInfo(
    settings => {
        settings.Name = "schedulerStatusInfo";
        settings.Priority = 1;
        settings.SchedulerName = "scheduler";
    }).GetHtml()

To specify text and display it via the Scheduler Status Info element, call the SchedulerExtension.SetErrorText method.

The Scheduler Status Info element can display a custom text. It is illustrated in the picture below.

Scheduler_Status_Info

See Also