blazor-devexpress-dot-blazor-ee0ce0a0.md
The drop-down item that allows you to navigate to a specific date.
Namespace : DevExpress.Blazor
Assembly : DevExpress.Blazor.v25.2.dll
NuGet Package : DevExpress.Blazor
public class DxSchedulerDateNavigatorToolbarItem :
SchedulerToolbarItemBase
Users can click the Date Navigator button to move to another time interval that contains a specific date:
The DxSchedulerDateNavigatorToolbarItem partly supports toolbar item functionality. Refer to the following list for additional information on available options: API Reference.
Note that a Date Navigator item starts a new group by default, unlike standard toolbar items:
| Property | Toolbar Item Default Value | Date Navigator Default Value |
|---|---|---|
| BeginGroup | false | true |
The following adds a Date Navigator item to the toolbar and changes its render style to Warning:
<DxScheduler StartDate="DateTime.Today"
DataStorage="DataStorage">
<Views>
<DxSchedulerDayView />
</Views>
<ToolbarItems>
<DxSchedulerTodayToolbarItem />
<DxSchedulerPreviousIntervalToolbarItem />
<DxSchedulerNextIntervalToolbarItem />
<DxSchedulerDateNavigatorToolbarItem RenderStyle="ButtonRenderStyle.Warning" />
</ToolbarItems>
</DxScheduler>
Object ComponentBase DxComponentBase DxModelComponent DxToolbarItemBase DxToolbarItem DevExpress.Blazor.Scheduler.Internal.SchedulerToolbarItemBase DxSchedulerDateNavigatorToolbarItem
See Also