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

ASPxTreeList.EnableCallbacks Property

Gets or sets a value that specifies whether the callback or postback technology is used to manage round trips to the server.

Namespace: DevExpress.Web.ASPxTreeList

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

Declaration

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

Property Value

Type Default Description
Boolean **true**

true if round trips to the server are performed using callbacks; false if postbacks are used.

Remarks

Use the EnableCallbacks property to control whether round trips to the server can be performed either using standard postbacks (the whole page is refreshed) or the newly implemented callback technology.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the EnableCallbacks property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also