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

ASPxTreeList.SettingsDataSecurity Property

Security settings that allow you to disable data operations in the ASPxTreeList.

Namespace: DevExpress.Web.ASPxTreeList

Assembly: DevExpress.Web.ASPxTreeList.v19.2.dll

Declaration

public TreeListSettingsDataSecurity SettingsDataSecurity { get; }

Property Value

Type Description
TreeListSettingsDataSecurity

The security settings.

Remarks

Declaratively:

<dx:ASPxTreeList ID="ASPxTreeList1" runat="server" >
    <SettingsDataSecurity AllowReadUnlistedFieldsFromClientApi="True" />
</dx:ASPxTreeList>

In code:

ASPxTreeList 1.SettingsDataSecurity.AllowReadUnlistedFieldsFromClientApi = DefaultBoolean.True;
See Also