From 210b2a46630aaac04e4b197dcb017d0aa60cc09c Mon Sep 17 00:00:00 2001
From: Prathappr <102800982+Prathappr@users.noreply.github.com>
Date: Mon, 16 Feb 2026 16:20:01 +0530
Subject: [PATCH 1/6] Fix image path for query update GIF
---
blazor/datagrid/data-binding/remote-data.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blazor/datagrid/data-binding/remote-data.md b/blazor/datagrid/data-binding/remote-data.md
index 8dc7e1f62c..571583d627 100644
--- a/blazor/datagrid/data-binding/remote-data.md
+++ b/blazor/datagrid/data-binding/remote-data.md
@@ -279,7 +279,7 @@ The example demonstrates modifying the query parameter dynamically. Initially, t
}
```
-
+
## Offline mode
From ea0b8e48a8fdfa232681aab683dc30563e454f3e Mon Sep 17 00:00:00 2001
From: Prathappr <102800982+Prathappr@users.noreply.github.com>
Date: Mon, 16 Feb 2026 16:21:36 +0530
Subject: [PATCH 2/6] Update preview sample link and theme in documentation
---
blazor/datagrid/column-menu.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blazor/datagrid/column-menu.md b/blazor/datagrid/column-menu.md
index 67f2bc464e..5f2784f357 100644
--- a/blazor/datagrid/column-menu.md
+++ b/blazor/datagrid/column-menu.md
@@ -540,7 +540,7 @@ public class OrderData
{% endhighlight %}
{% endtabs %}
-{% previewsample "https://blazorplayground.syncfusion.com/embed/LthetSqtfZnABCcg?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
+{% previewsample "https://blazorplayground.syncfusion.com/embed/BNrnZiBlzsPHBORW?appbar=false&editor=false&result=true&errorlist=false&theme=material" %}
## Column menu events
From cc189fbdd7d4c53fc43463c0a10712806c3edb06 Mon Sep 17 00:00:00 2001
From: Prathappr <102800982+Prathappr@users.noreply.github.com>
Date: Mon, 16 Feb 2026 16:22:21 +0530
Subject: [PATCH 3/6] Fix formatting of TextAlign property note
---
blazor/datagrid/columns.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/blazor/datagrid/columns.md b/blazor/datagrid/columns.md
index 7017ca39ab..ba2afd8377 100644
--- a/blazor/datagrid/columns.md
+++ b/blazor/datagrid/columns.md
@@ -942,7 +942,7 @@ The Syncfusion® Blazor DataGrid allows alig
{% previewsample "https://blazorplayground.syncfusion.com/embed/htrJCMMuCwICimOy?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
-N >* The `TextAlign` property only changes the alignment of cell content, not the column header. To align both the column header and content, use the `HeaderTextAlign` property along with `TextAlign`.
+N>* The `TextAlign` property only changes the alignment of cell content, not the column header. To align both the column header and content, use the `HeaderTextAlign` property along with `TextAlign`.
>* If only `HeaderTextAlign` is specified, the header will align as expected, but the cell content will remain at its default alignment.
>* To achieve consistent alignment for both header and cell content, specify both properties.
@@ -2280,4 +2280,4 @@ Use `HideAtMedia` property to create responsive layouts where certain columns ar
* Comprehensive information about the Syncfusion Blazor DataGrid and its features is available through the following resources:
* **Feature Overview:** The [Blazor DataGrid](https://www.syncfusion.com/blazor-components/blazor-datagrid) feature tour provides a complete overview of available capabilities.
- * **Interactive Examples:** The [Blazor DataGrid examples](https://blazor.syncfusion.com/demos/datagrid/overview?theme=bootstrap5) provide practical demonstrations of data presentation and manipulation.
\ No newline at end of file
+ * **Interactive Examples:** The [Blazor DataGrid examples](https://blazor.syncfusion.com/demos/datagrid/overview?theme=bootstrap5) provide practical demonstrations of data presentation and manipulation.
From 611fa06e778821bd026ac7a4f95385e48dd93bfc Mon Sep 17 00:00:00 2001
From: Prathappr <102800982+Prathappr@users.noreply.github.com>
Date: Mon, 16 Feb 2026 16:24:11 +0530
Subject: [PATCH 4/6] Enhance row drag-and-drop documentation with examples
Added a preview sample link for row drag-and-drop feature and provided details on enabling row drag-and-drop to custom components.
---
blazor/datagrid/row-drag-and-drop.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/blazor/datagrid/row-drag-and-drop.md b/blazor/datagrid/row-drag-and-drop.md
index 64a2da24ab..f03ebcee6f 100644
--- a/blazor/datagrid/row-drag-and-drop.md
+++ b/blazor/datagrid/row-drag-and-drop.md
@@ -281,6 +281,8 @@ public class OrdersDetails
{% endhighlight %}
{% endtabs %}
+{% previewsample "https://blazorplayground.syncfusion.com/embed/VXBHtMhbpBpDVXzQ?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
+
## Drag and drop to custom component
The Syncfusion® Blazor DataGrid supports dragging rows into custom components. Enable [AllowRowDragAndDrop] and set [RowDropSettings.TargetID](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridRowDropSettings.html#Syncfusion_Blazor_Grids_GridRowDropSettings_TargetID) to the **ID** of the target component.
@@ -791,4 +793,4 @@ public class OrderData
- A single row can be dragged and dropped within the same grid even if multiple selection is not enabled.
- Row drag and drop does not have built-in support when combined with sorting, filtering, hierarchy grid, or row template features.
- Row drag and drop with grouping does not support lazy-load grouping.
-- Dragging and dropping within the same group key is not supported. The grid does not allow drag-and-drop for multiple rows that belong to different grouped collections.
\ No newline at end of file
+- Dragging and dropping within the same group key is not supported. The grid does not allow drag-and-drop for multiple rows that belong to different grouped collections.
From 53a35de60b6193347d5c689c88769a9ed967ce21 Mon Sep 17 00:00:00 2001
From: Prathappr <102800982+Prathappr@users.noreply.github.com>
Date: Mon, 16 Feb 2026 16:30:49 +0530
Subject: [PATCH 5/6] Fix code block formatting in remote-data.md
Updated code block formatting for setting access token in HttpClient.
---
blazor/datagrid/data-binding/remote-data.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/blazor/datagrid/data-binding/remote-data.md b/blazor/datagrid/data-binding/remote-data.md
index 571583d627..b2668d62db 100644
--- a/blazor/datagrid/data-binding/remote-data.md
+++ b/blazor/datagrid/data-binding/remote-data.md
@@ -177,7 +177,7 @@ This section describes how to configure [SfDataManager](https://help.syncfusion.
Inject the configured `HttpClient` and set the access token in the default request headers:
- ```csharp
+```csharp
@inject HttpClient _httpClient
@code {
@@ -187,7 +187,7 @@ This section describes how to configure [SfDataManager](https://help.syncfusion.
await base.OnInitializedAsync();
}
}
- ```
+```
- **Using the Headers property of SfDataManager:**
From 19053c1726a9efbfdc940ff12bd47d98b33395b4 Mon Sep 17 00:00:00 2001
From: Prathappr
Date: Mon, 16 Feb 2026 16:53:54 +0530
Subject: [PATCH 6/6] removed unwanted space
---
blazor/datagrid/columns.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/blazor/datagrid/columns.md b/blazor/datagrid/columns.md
index ba2afd8377..1a4c0310c8 100644
--- a/blazor/datagrid/columns.md
+++ b/blazor/datagrid/columns.md
@@ -2280,4 +2280,4 @@ Use `HideAtMedia` property to create responsive layouts where certain columns ar
* Comprehensive information about the Syncfusion Blazor DataGrid and its features is available through the following resources:
* **Feature Overview:** The [Blazor DataGrid](https://www.syncfusion.com/blazor-components/blazor-datagrid) feature tour provides a complete overview of available capabilities.
- * **Interactive Examples:** The [Blazor DataGrid examples](https://blazor.syncfusion.com/demos/datagrid/overview?theme=bootstrap5) provide practical demonstrations of data presentation and manipulation.
+ * **Interactive Examples:** The [Blazor DataGrid examples](https://blazor.syncfusion.com/demos/datagrid/overview?theme=bootstrap5) provide practical demonstrations of data presentation and manipulation.
\ No newline at end of file