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

    Specifies whether to allow users to increase and decrease the number of visible resources 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 EnableIncreaseDecrease { get; set; }

    Property Value

    Type Default Description
    Boolean true

    true to allow users to increase and decrease the number of visible resources; otherwise, false.

    Remarks

    Note

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

    Web Forms:

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

    MVC:

    scheduler.ResourceNavigator.EnableIncreaseDecrease = true; 
    
    See Also