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

    The toolbar item that allows you to navigate to the next time interval.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    public class DxSchedulerNextIntervalToolbarItem :
        SchedulerToolbarItemBase

    Remarks

    Users can click Next Interval buttons to move one visible time frame forward.

    Scheduler Toolbar - Next Time Interval

    The DxSchedulerNextIntervalToolbarItem partly supports toolbar item functionality. Refer to the following list for more information on available options: API Reference.

    Note that Next Interval buttons have a pre-defined tooltip, unlike standard toolbar items:

    Property Toolbar Item Default Value Next Interval Default Value
    Tooltip "" A11y_Scheduler_Toolbar_NextTimePeriod

    The following example aligns Next Interval and Previous Interval buttons to the right:

    Custom Toolbar Item Alignment

    <DxScheduler StartDate="DateTime.Today"
                 DataStorage="DataStorage">
        <Views>
            <DxSchedulerDayView />
        </Views>
        <ToolbarItems>
            <DxSchedulerTodayToolbarItem />
            <DxSchedulerDateNavigatorToolbarItem />
            <DxSchedulerPreviousIntervalToolbarItem BeginGroup="true" Alignment="ToolbarItemAlignment.Right" />
            <DxSchedulerNextIntervalToolbarItem />
        </ToolbarItems>
    </DxScheduler>
    

    Inheritance

    Object
    ComponentBase
    DxComponentBase
    DevExpress.Blazor.Base.DxAsyncDisposableComponent
    DxSettingsComponent
    DxToolbarItemBase
    DxToolbarItem
    DevExpress.Blazor.Scheduler.Internal.SchedulerToolbarItemBase
    DxSchedulerNextIntervalToolbarItem
    See Also