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
The [SfDataGrid](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.SfDataGrid.html) includes a built-in Filter Row designed for efficient record filtering. You can enable the FilterRow by specifying the position where it should be displayed by setting [SfDataGrid.FilterRowPosition]() property.
13
+
The [SfDataGrid](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.SfDataGrid.html) includes a built-in Filter Row designed for efficient record filtering. You can enable the FilterRow by specifying the position where it should be displayed by setting [SfDataGrid.FilterRowPosition](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.SfDataGrid.html#Syncfusion_Maui_DataGrid_SfDataGrid_FilterRowPosition) property.
<imgalt="MAUI DataGrid with Filter Row"src="Images\filterrow\maui-datagrid-filterrow-basic.png"width="404" />
29
29
30
-
Retrieve the row index of the FilterRow using the [SfDataGrid.GetFilterRowIndex]() method.
30
+
Retrieve the row index of the FilterRow using the [SfDataGrid.GetFilterRowIndex](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Helper.GridIndexResolver.html#Syncfusion_Maui_DataGrid_Helper_GridIndexResolver_GetFilterRowIndex_Syncfusion_Maui_DataGrid_SfDataGrid_) method.
31
31
32
32
{% tabs %}
33
33
{% highlight c# %}
34
34
int filterRowIndex = this.dataGrid.GetFilterRowIndex();
35
35
{% endhighlight %}
36
36
{% endtabs %}
37
37
38
-
Verify if a given row index corresponds to the FilterRow by utilizing the [SfDataGrid.IsFilterRowIndex]() helper method.
38
+
Verify if a given row index corresponds to the FilterRow by utilizing the [SfDataGrid.IsFilterRowIndex](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.Helper.GridIndexResolver.html#Syncfusion_Maui_DataGrid_Helper_GridIndexResolver_IsFilterRowIndex_Syncfusion_Maui_DataGrid_SfDataGrid_System_Int32_) helper method.
39
39
40
40
{% tabs %}
41
41
{% highlight c# %}
@@ -51,8 +51,8 @@ The FilterRow automatically initializes editors that correspond to the underlyin
<imgalt="Filter Row with Null option in MAUI DataGrid"src="Images\filterrow\maui-datagrid-filterrow-multiselectblankfilters.png"width="404" />
247
248
248
249
## Instant filtering
249
-
Filters are typically applied to columns upon cell navigation or pressing the Enter key. However, by setting [DataGridColumn.ImmediateUpdateColumnFilter]() to `true`, you can enable instant filtering as you type within the editor.
250
+
Filters are typically applied to columns upon cell navigation or pressing the Enter key. However, by setting [DataGridColumn.ImmediateUpdateColumnFilter](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridColumn.html#Syncfusion_Maui_DataGrid_DataGridColumn_ImmediateUpdateColumnFilter) to `true`, you can enable instant filtering as you type within the editor.
Customize the appearance of the filter row by defining a style with TargetType [DataGridFilterRowView].
296
+
Customize the appearance of the filter row by defining a style with TargetType [DataGridFilterRowView](https://help.syncfusion.com/cr/maui/Syncfusion.Maui.DataGrid.DataGridFilterRowView.html).
293
297
{% tabs %}
294
298
{% highlight xaml %}
295
299
<ContentPage.Resources>
@@ -309,12 +313,11 @@ Further customize the filter row cell's appearance through the `FilterRowCellSty
0 commit comments