ASPxSchedulerStyles.LoadingPanel Property
Gets the loading panel’s style settings.
Namespace: DevExpress.Web.ASPxScheduler
Assembly: DevExpress.Web.ASPxScheduler.v24.2.dll
Declaration
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