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

TreeListDataCacheMode Enum

Lists values that specify whether data caching is enabled.

Namespace: DevExpress.Web.ASPxTreeList

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

Declaration

public enum TreeListDataCacheMode

Members

Name Description
Enabled

Enables data caching.

Disabled

Disables data caching.

Auto

The ASPxTreeList enables or disables data caching on demand. Data cashing is enabled if at least one of the following conditions are met:

  • data paging is enabled;
  • the number of visible nodes divided by the number of visible columns is less than 1,000 (avoids a heavy callback state).

Related API Members

The following properties accept/return TreeListDataCacheMode values:

Remarks

The values listed by this enumeration are used to set the ASPxTreeList.DataCacheMode property’s value.

See Also