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/cell-selection.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Cell selection in the Syncfusion<sup style="font-size:70%">®</sup> Blazor Da
15
15
16
16
## Single cell selection
17
17
18
-
Single cell selection allows selecting one cell at a time within the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid. This is useful for focusing on a specific cell or performing actions on individual cell values.
18
+
Single cell selection allows selecting one cell at a time within the Syncfusion Blazor DataGrid. This is useful for focusing on a specific cell or performing actions on individual cell values.
19
19
20
20
To enable single cell selection:
21
21
@@ -101,7 +101,7 @@ public class OrderDetails
101
101
102
102
## Multiple cell selection
103
103
104
-
Multiple cell selection in the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid enables selection of multiple cells within the Grid. This feature is beneficial for performing actions on several cells simultaneously or focusing on specific areas of the data.
104
+
Multiple cell selection in the Syncfusion Blazor DataGrid enables selection of multiple cells within the Grid. This feature is beneficial for performing actions on several cells simultaneously or focusing on specific areas of the data.
105
105
106
106
To enable multiple cell selection:
107
107
@@ -187,7 +187,7 @@ public class OrderDetails
187
187
188
188
## Cell selection mode
189
189
190
-
The cell selection mode in the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid enables interactive selection of specific cells or ranges of cells. This feature is particularly useful for performing actions on selected cells or retrieving data from targeted areas within the Grid.
190
+
The cell selection mode in the Syncfusion Blazor DataGrid enables interactive selection of specific cells or ranges of cells. This feature is particularly useful for performing actions on selected cells or retrieving data from targeted areas within the Grid.
191
191
192
192
The Grid supports three types of cell selection modes, configurable via the [GridSelectionSettings.CellSelectionMode](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridSelectionSettings.html#Syncfusion_Blazor_Grids_GridSelectionSettings_CellSelectionMode) property:
193
193
@@ -298,7 +298,7 @@ public class OrderDetails
298
298
299
299
## Select cells via programmatically
300
300
301
-
Single cell selection, multiple cell selection, and range-based cell selection can be performed externally in the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid using built-in methods. These API's allow programmatic interaction with specific cells in the Grid.
301
+
Single cell selection, multiple cell selection, and range-based cell selection can be performed externally in the Syncfusion Blazor DataGrid using built-in methods. These API's allow programmatic interaction with specific cells in the Grid.
302
302
303
303
### Single cell selection
304
304
@@ -397,7 +397,7 @@ public class OrderDetails
397
397
398
398
### Multiple cell selection
399
399
400
-
Multiple cell selection in the Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid enables selection of multiple cells within the Grid. This is useful for performing actions on several cells simultaneously or focusing on specific data regions.
400
+
Multiple cell selection in the Syncfusion Blazor DataGrid enables selection of multiple cells within the Grid. This is useful for performing actions on several cells simultaneously or focusing on specific data regions.
401
401
402
402
To perform multiple cell selection programmatically, use the [SelectCellsAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_SelectCellsAsync_System_ValueTuple_System_Int32_System_Int32____) method. This method accepts a collection of row and column index pairs to define the target cells.
403
403
@@ -499,7 +499,7 @@ public class OrderDetails
499
499
500
500
## Get selected row cell indexes
501
501
502
-
The Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid provides a method to retrieve the collection of selected row and cell indexes for the currently selected cells. This is useful for performing actions or applying logic based on selected cell positions.
502
+
The Syncfusion Blazor DataGrid provides a method to retrieve the collection of selected row and cell indexes for the currently selected cells. This is useful for performing actions or applying logic based on selected cell positions.
503
503
504
504
To retrieve the selected indexes, use the [GetSelectedRowCellIndexesAsync](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.SfGrid-1.html#Syncfusion_Blazor_Grids_SfGrid_1_GetSelectedRowCellIndexesAsync) method.
505
505
@@ -695,7 +695,7 @@ public class OrderDetails
695
695
696
696
## Cell selection events
697
697
698
-
The Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid provides multiple events to customize and respond to cell selection behavior. These events allow developers to implement validation, control selection flow, and trigger actions based on user interaction.
698
+
The Syncfusion Blazor DataGrid provides multiple events to customize and respond to cell selection behavior. These events allow developers to implement validation, control selection flow, and trigger actions based on user interaction.
699
699
700
700
*[CellSelecting](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridEvents-1.html#Syncfusion_Blazor_Grids_GridEvents_1_CellSelecting): Triggered before a cell is selected. Use this event to implement custom logic or validation to control whether the cell should be selected.
Copy file name to clipboardExpand all lines: blazor/datagrid/checkbox-selection.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -235,7 +235,7 @@ The following example demonstrates how to persist checkbox selections when the G
235
235
236
236
## Hide selectall checkbox in column header
237
237
238
-
The Syncfusion<supstyle="font-size:70%">®</sup> Blazor DataGrid allows customization of the checkbox column, including the ability to hide the SelectAll checkbox in the column header. This is useful in scenarios where bulk selection is not required or when customizing the Grid's appearance.
238
+
The Syncfusion Blazor DataGrid allows customization of the checkbox column, including the ability to hide the SelectAll checkbox in the column header. This is useful in scenarios where bulk selection is not required or when customizing the Grid's appearance.
239
239
240
240
By default, setting the column [Type](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridColumn.html#Syncfusion_Blazor_Grids_GridColumn_Type) to **CheckBox** renders a checkbox column with a SelectAll checkbox in the header. To hide the header checkbox, define an empty [HeaderTemplate](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridColumn.html#Syncfusion_Blazor_Grids_GridColumn_HeaderTemplate) in the [GridColumn](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Grids.GridColumn.html).
0 commit comments