Skip to main content

ResourceNavigatorPropertiesBase.EnableResourceComboBox Property

Specifies whether to display a combo box that lists resources.

Namespace: DevExpress.Web.ASPxScheduler

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

NuGet Package: DevExpress.Web.Scheduler

Declaration

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

Property Value

Type Default Description
Boolean true

true to display a combo box that lists resources; otherwise, false.

Remarks

Web Forms:

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

MVC:

scheduler.ResourceNavigator.EnableResourceComboBox = false; 
See Also