Skip to main content
A newer version of this page is available. .

DashboardConfigurator.AllowReadUnlistedColumnsFromClientApi Property

Gets or sets whether to enable client-side access to data source fields that are not associated with any dashboard item’s data members.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v20.2.Web.dll

NuGet Package: DevExpress.Web.Dashboard.Common

Declaration

public bool AllowReadUnlistedColumnsFromClientApi { get; set; }

Property Value

Type Description
Boolean

true, to enable client-side access to data source fields that are not associated with any dashboard item’s data members; otherwise, false.

Remarks

Use the AllowReadUnlistedColumnsFromClientApi property to restrict access from a client API to data source fields which do not have the corresponding bound data members in the dashboard items.

You can use the DashboardConfigurator.ValidateUnderlyingDataColumns event to validate which columns should be returned when a user requests underlying data from the client.

See Also