Skip to main content
All docs
V25.1
  • ASPxSchedulerStatusInfo Class

    Contains status info settings.

    Namespace: DevExpress.Web.ASPxScheduler.Controls

    Assembly: DevExpress.Web.ASPxScheduler.v25.1.dll

    NuGet Package: DevExpress.Web.Scheduler

    Declaration

    public class ASPxSchedulerStatusInfo :
        ASPxWebControl

    Remarks

    Use the ASPxSchedulerStatusInfo to indicate errors and invalid values on the appointment form.

    The following snippet shows markup of the default appoitment form template:

    <table class="dxscAppointmentForm" cellpadding="0" cellspacing="0" style="width: 100%; height: 230px;">
        @* ... *@
    </table>
    
    <dxsc:AppointmentRecurrenceForm ID="AppointmentRecurrenceForm1" runat="server"
        IsRecurring='<%# ((AppointmentFormTemplateContainer)Container).Appointment.IsRecurring %>' 
        DayNumber='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceDayNumber %>' 
        End='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceEnd %>' 
        Month='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceMonth %>' 
        OccurrenceCount='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceOccurrenceCount %>' 
        Periodicity='<%# ((AppointmentFormTemplateContainer)Container).RecurrencePeriodicity %>' 
        RecurrenceRange='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceRange %>' 
        Start='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceStart %>' 
        WeekDays='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceWeekDays %>' 
        WeekOfMonth='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceWeekOfMonth %>' 
        RecurrenceType='<%# ((AppointmentFormTemplateContainer)Container).RecurrenceType %>'
        IsFormRecreated='<%# ((AppointmentFormTemplateContainer)Container).IsFormRecreated %>' >
    </dxsc:AppointmentRecurrenceForm>
    
    <table cellpadding="0" cellspacing="0" style="width: 100%; height: 35px;">
        @* ... *@
    </table>
    <table cellpadding="0" cellspacing="0" style="width: 100%;">
        <tr>
            <td style="width: 100%;" align="left">
                <dxsc:ASPxSchedulerStatusInfo runat="server" ID="schedulerStatusInfo" Priority="1" MasterControlId='<%# ((DevExpress.Web.ASPxScheduler.AppointmentFormTemplateContainer)Container).ControlId %>' />
            </td>
        </tr>
    </table>
    

    Inheritance

    See Also