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
Copy file name to clipboardExpand all lines: blazor/datagrid/how-to/send-context-as-additional-parameters-from-events.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ control: DataGrid
7
7
documentation: ug
8
8
---
9
9
10
-
# Sending context as additional parameters from events in Blazor DataGrid
10
+
# Sending context as additional parameters in Blazor DataGrid events
11
11
12
12
The Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid offers flexibility to pass additional context information during events. This capability is especially useful for dynamically updating Grid data based on interactions with other components, enabling seamless, real-time data modifications within the Grid.
Copy file name to clipboardExpand all lines: blazor/datagrid/how-to/use-radio-button-instead-of-checkbox.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ control: DataGrid
7
7
documentation: ug
8
8
---
9
9
10
-
# How to use radio button instead of checkbox for row selection in Blazor DataGrid
10
+
# How to use radio button instead of checkbox in Blazor DataGrid
11
11
12
12
By default, the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid provides checkbox selection to allow multiple row selection. If there is a need to allow only one row to be selected at a time, a radio button can be used instead of checkbox selection. This can be achieved by using the column [Template](https://blazor.syncfusion.com/documentation/datagrid/column-template) feature to render a [SfRadioButton](https://blazor.syncfusion.com/documentation/radio-button/getting-started-webapp) in each row. The radio button can be linked to a unique value from the data source, such as the primary key field.
13
13
@@ -29,14 +29,14 @@ The following example demonstrates how to handle row selection in the Grid using
Copy file name to clipboardExpand all lines: blazor/datagrid/paging.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ documentation: ug
9
9
10
10
# Paging in Blazor DataGrid
11
11
12
-
[Paging](https://www.syncfusion.com/blazor-components/blazor-datagrid/paging) provides an option to display Syncfsion Blazor DataGrid data in segmented pages, making it easier to navigate through large datasets. This feature is particularly useful when dealing with extensive data sets.
12
+
[Paging](https://www.syncfusion.com/blazor-components/blazor-datagrid/paging) provides an option to display Syncfusion Blazor DataGrid data in segmented pages, making it easier to navigate through large datasets. This feature is particularly useful when dealing with extensive data sets.
13
13
14
14
To enable paging, you need to set the [AllowPaging](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_AllowPaging) property to **true**. This property determines whether paging is enabled or disabled for the Grid. When paging is enabled, a pager rendered at the bottom of the Grid, allowing you to navigate through different pages of data.
15
15
@@ -450,6 +450,7 @@ The following example demonstrates how to render a **NumericTextBox** in the pag
Copy file name to clipboardExpand all lines: blazor/datagrid/style-and-appearance/editing.md
+8-9Lines changed: 8 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,13 @@
1
1
---
2
2
layout: post
3
3
title: Editing customization in DataGrid | Syncfusion
4
-
description: Learn here all about editing in Syncfusion Blazor DataGrid and more.
4
+
description: Learn here all about editing customization in Syncfusion Blazor DataGrid component and more details.
5
5
platform: Blazor
6
6
control: DataGrid
7
7
documentation: ug
8
8
---
9
9
10
-
# Editing in Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid
10
+
# Editing customization in Syncfusion Blazor DataGrid
11
11
12
12
You can customize the appearance of editing-related elements in the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid using CSS. Below are examples of how to customize various editing-related elements.
13
13
@@ -50,7 +50,7 @@ In this example, the **.e-gridform** class represents the editing form, and the
<GridColumnField=@nameof(OrderData.OrderDate)HeaderText=" Order Date"Format="d"Type="ColumnType.Date"TextAlign="TextAlign.Right"Width="130"></GridColumn>
0 commit comments