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

    Specifies whether to display buttons that allows you to navigate to the first and last resources.

    Namespace: DevExpress.Web.ASPxScheduler

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

    NuGet Package: DevExpress.Web.Scheduler

    Declaration

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

    Property Value

    Type Default Description
    Boolean true

    true to display buttons for navigation; otherwise, false.

    Remarks

    Web Forms:

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

    MVC:

    scheduler.ResourceNavigator.EnableFirstLast = true; 
    
    See Also