Skip to content

Commit c9f1b79

Browse files
992668: Updated the UG content and samples for Adaptors in Blazor DataGrid
1 parent 57dcc14 commit c9f1b79

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

blazor/datagrid/connecting-to-adaptors/custom-adaptor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Bind Data and Perform CRUD with Syncfusion Blazor DataGrid CustomAdaptor
3+
title: Bind Data and Perform CRUD Using Syncfusion Blazor DataGrid CustomAdaptor
44
description: Learn how to implement custom data binding and enable full CRUD operations using CustomAdaptor in the Syncfusion Blazor DataGrid for flexible data handling.
55
platform: Blazor
66
control: DataGrid

blazor/datagrid/connecting-to-adaptors/graphql-adaptor.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: post
3-
title: Bind GraphQL Data in Blazor DataGrid | Syncfusion
3+
title: GraphQL Data Binding in Syncfusion Blazor DataGrid
44
description: Learn how to bind data from a GraphQL API to the Syncfusion Blazor DataGrid, including querying, mutation, and integration techniques.
55
platform: Blazor
66
control: DataGrid
@@ -836,7 +836,7 @@ public class OrdersDataResponse
836836
**Filtering** parameters are sent through the **Where** property of `DataManagerRequestInput`. Each filter condition includes:
837837
838838
* **Field**: The column name to apply the filter.
839-
* **Operator**: The comparison operator (e.g., equal, contains, greaterthan).
839+
* **Operator**: The comparison operator (e.g., equal, contains, greater than).
840840
* **Value**: The value to compare against.
841841
* **IgnoreCase**: Indicates whether the comparison should be case-insensitive.
842842
* **Predicates**: Nested conditions for complex filtering.

blazor/datagrid/connecting-to-adaptors/odatav4-adaptor.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Include the theme and script references in **App.razor**:
223223
The [SfDataManager](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DataManager.html) component provides multiple adaptors for remote data binding. For **OData V4** services, set the [Adaptor](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DataManager.html#Syncfusion_Blazor_DataManager_Adaptor) property to [Adaptors.ODataV4Adaptor](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Adaptors.html#Syncfusion_Blazor_Adaptors_ODataV4Adaptor) and specify the service endpoint in the [Url](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DataManager.html#Syncfusion_Blazor_DataManager_Url) property.
224224

225225
{% tabs %}
226-
{% highlight razor tabtitle="Index.razor"%}
226+
{% highlight razor tabtitle="Index.razor" %}
227227

228228
@using Syncfusion.Blazor.Grids
229229
@using Syncfusion.Blazor.Data
@@ -320,7 +320,7 @@ builder.Services.AddControllers().AddOData(
320320
);
321321

322322
{% endhighlight %}
323-
{% highlight razor tabtitle="Index.razor"%}
323+
{% highlight razor tabtitle="Index.razor" %}
324324

325325
@using Syncfusion.Blazor.Grids
326326
@using Syncfusion.Blazor.Data
@@ -382,7 +382,7 @@ builder.Services.AddControllers().AddOData(
382382
);
383383

384384
{% endhighlight %}
385-
{% highlight razor tabtitle="Index.razor"%}
385+
{% highlight razor tabtitle="Index.razor" %}
386386

387387
@using Syncfusion.Blazor.Grids
388388
@using Syncfusion.Blazor.Data
@@ -436,7 +436,7 @@ builder.Services.AddControllers().AddOData(
436436
);
437437

438438
{% endhighlight %}
439-
{% highlight razor tabtitle="Index.razor"%}
439+
{% highlight razor tabtitle="Index.razor" %}
440440

441441
@using Syncfusion.Blazor.Grids
442442
@using Syncfusion.Blazor.Data
@@ -495,7 +495,7 @@ builder.Services.AddControllers().AddOData(
495495
);
496496

497497
{% endhighlight %}
498-
{% highlight razor tabtitle="Index.razor"%}
498+
{% highlight razor tabtitle="Index.razor" %}
499499

500500
@using Syncfusion.Blazor.Grids
501501
@using Syncfusion.Blazor.Data

0 commit comments

Comments
 (0)