ASPxGridView.EnableRowsCache Property
Specifies whether the control caches its data.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v25.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
| Type | Default | Description |
|---|---|---|
| Boolean | true |
|
Remarks
ASPxGridView has built-in cache that stores data of visible rows for quick access. This avoids additional data binding when grid performs operations that do not require reloading data, for instance, when it rearranges or hides columns.
Set the EnableRowsCache property to false to disable data cache.
<dx:ASPxGridView ID="Grid" runat="server" EnableRowsCache="False" ... />
Refer to the following topic for more information: Built-in Row Cache.
See Also