Skip to main content
All docs
V25.1
  • JS

    AllDayPanelMode Enum

    Specifies the display mode for the “All day” panel.

    Namespace: DevExtreme.AspNet.Mvc

    Assembly: DevExtreme.AspNet.Core.dll

    Declaration

    [JsonConverter(typeof(StringEnumConverter))]
    public enum AllDayPanelMode

    Members

    Name Description
    All

    Displays appointments that have a duration equal to or more than 24 hours.

    AllDay

    Displays only the appointments whose allDay option is enabled.

    Hidden

    Hides the “All day” panel.

    Remarks

    Use the AllDayPanelMode(AllDayPanelMode) method to specify the display mode for the “All day” panel.

    @(Html.DevExtreme().Scheduler()
        .AllDayPanelMode(AllDayPanelMode.All);
        //...
    )
    
    See Also