You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: Working in offline mode in Blazor DataManager Component | Syncfusion
4
-
description: Checkout and learn here all about working in offline mode in Syncfusion Blazor DataManager component and more.
3
+
title: Working in Offline Mode in Blazor DataManager | Syncfusion
4
+
description: Learn how to enable offline mode in Syncfusion® Blazor DataManager to process queries locally without additional server requests.
5
5
platform: Blazor
6
6
control: DataManager
7
7
documentation: ug
@@ -11,25 +11,40 @@ documentation: ug
11
11
12
12
# Working in Offline Mode in Blazor DataManager Component
13
13
14
-
On binding data through remote services, request will be sent to the server-side for every query. To avoid post back to server, you can set the [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html) to load all the data on initialization itself and make the query processing in client-side. This behavior can be enabled by using [Offline](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DataManager.html#Syncfusion_Blazor_DataManager_Offline) property of the [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html).
14
+
The Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataManager component provides **offline mode**to execute query operations on the client without additional server requests. When data is sourced from a remote service, enabling offline mode retrieves the complete collection during initialization and processes all subsequent operations locally. The cached data is maintained in the **Json** property.
15
15
16
-
The following sample code demonstrates enabling offline mode for the [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html) which is bound with the DataGrid component,
16
+
To enable offline mode, set the [Offline](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DataManager.html#Syncfusion_Blazor_DataManager_Offline) property to **true** on the [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.SfDataManager.html) component.
17
+
18
+
## Key benefits of offline mode
19
+
20
+
Enabling the `Offline` property modifies the behavior of the `DataManager` component in the following ways:
21
+
22
+
-**Single data load** – Retrieves the complete collection during initialization without additional server requests.
23
+
-**Client-side processing** – Executes **filtering**, **sorting**, **paging**, and gro**uping operations in the browser.
24
+
-**Improved performance** – Minimizes **network traffic** and enhances responsiveness.
25
+
-**Offline functionality** – Maintains query operations even when network connectivity is unavailable.
26
+
-**Adaptor compatibility** – Supports **OData**, **Web API**, and **URL adaptors** without requiring extra configuration.
0 commit comments