Back to Devexpress

AllDayPanelMode Enum

aspnetcore-devextreme-dot-aspnet-dot-mvc-b1063baa.md

latest1.0 KB
Original Source

AllDayPanelMode Enum

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

Namespace : DevExtreme.AspNet.Mvc

Assembly : DevExtreme.AspNet.Core.dll

Declaration

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

Members

NameDescription
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.

cshtml
@(Html.DevExtreme().Scheduler()
    .AllDayPanelMode(AllDayPanelMode.All);
    //...
)

See Also

DevExtreme.AspNet.Mvc Namespace