Skip to main content

ResourceNavigatorPropertiesBase.EnablePrevNextPage Property

Specifies whether to display buttons that allow users to navigate to the previous and next page.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

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

Property Value

Type Default Description
Boolean true

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

Remarks

Note

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

Web Forms:

<dx:ASPxResourceNavigator ID="ASPxResourceNavigator1" runat="server" MasterControlID="ASPxScheduler1">
    <Properties EnablePrevNextPage="false" />
</dx:ASPxResourceNavigator>

MVC:

scheduler.ResourceNavigator.EnablePrevNextPage = false; 
See Also