Skip to main content

DateEditSettings.CalendarDayCellPrepared Property

Enables you to customize the cell’s appearance.

Namespace: DevExpress.Web.Mvc

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

NuGet Package: DevExpress.Web.Mvc5

Declaration

public EventHandler<CalendarDayCellPreparedEventArgs> CalendarDayCellPrepared { get; set; }

Property Value

Type Description
EventHandler<CalendarDayCellPreparedEventArgs>

A EventHandler<TEventArgs><CalendarDayCellPreparedEventArgs,> delegate method allowing you to implement custom processing.

Remarks

Note

If you handle the CalendarDayCellPrepared event, it is necessary to define route values to the controller and the action that will handle DateEdit’s callbacks. Use the DateEditSettings.CallbackRouteValues property to define the callback route values.

Note

MVC Specifics:

To use the CalendarDayCellPrepared event, place the DateEdit in a separate view and specify the CallbackRouteValues property.

See Also