Skip to main content

ASPxSchedulerStyles.LoadingPanel Property

Gets the loading panel’s style settings.

Namespace: DevExpress.Web.ASPxScheduler

Assembly: DevExpress.Web.ASPxScheduler.v23.2.dll

NuGet Package: DevExpress.Web.Scheduler

Declaration

public LoadingPanelStyle LoadingPanel { get; }

Property Value

Type Description
LoadingPanelStyle

The style settings.

Remarks

Web Forms:

<dx:ASPxScheduler ID="ASPxScheduler1" >
    <!-- ... -->
    <Styles>
        <LoadingPanel CssClass="myClass" />
    </Styles>
</dx:ASPxScheduler>

MVC:

@Html.DevExpress().Scheduler(
    settings => {
        settings.Name = "scheduler";
        <!-- ... -->
        settings.OptionsForms.SetAppointmentFormTemplateContent(c => {
            <!-- ... -->
            ViewBag.AppointmentRecurrenceFormSettings = CreateAppointmentRecurrenceFormSettings(c);
        });
}).Bind(Model.Appointments, Model.Resources).SetErrorText(ViewBag.SchedulerErrorText).GetHtml()

AppointmentRecurrenceFormSettings CreateAppointmentRecurrenceFormSettings(AppointmentFormTemplateContainer container) {
    return new AppointmentRecurrenceFormSettings {
        Name = "appointmentRecurrenceForm",
        Styles.LoadingPanel.CssClass = "myClass",
        <!-- ... -->
    };
}
See Also