Skip to main content
All docs
V25.1
  • ResourceNavigatorPropertiesBase.EnablePrevNext Property

    Specifies whether to display buttons that allow users to navigate to the previous and next resource in the resource navigator.

    Namespace: DevExpress.Web.ASPxScheduler

    Assembly: DevExpress.Web.ASPxScheduler.v25.1.dll

    NuGet Package: DevExpress.Web.Scheduler

    Declaration

    [DefaultValue(true)]
    public bool EnablePrevNext { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true to display buttons that allow users to navigate to the previous and next resource; otherwise, false.

    Remarks

    Note

    The EnablePrevNext property is in effect only if the Mode property is set to Pager.

    Web Forms:

    <dx:ASPxResourceNavigator ID="ASPxResourceNavigator1" runat="server" MasterControlID="ASPxScheduler1">
        <Properties EnablePrevNext="true" />
    </dx:ASPxResourceNavigator>
    

    MVC:

    scheduler.ResourceNavigator.EnablePrevNext = true; 
    
    See Also