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
Checkbox filtering is similar to Excel's filter popup, which displays a checked list box of unique items along with a search text field. The items which are in the checked state will be visible in the view. Other items will be filtered out from the view.
237
237
238
238
The checkbox filter popup menu with a few selected values in the checkbox list view for filtering is displayed in the following image.
239
239
240
-
<imgalt="Checkbox filtering with selected values"src="images/filtering/maui-datagrid-filtering-checkbox-filtering-with-selectedvalues.png"width="500"/>
240
+
<imgalt="Checkbox filtering with selected values"src="Images/filtering/maui-datagrid-filtering-checkbox-filtering-with-selectedvalues.png"width="500"/>
241
241
242
242
### Advanced filtering
243
243
Multiple filter choices are available in the advanced filter UI to make data filtering simple. By automatically identifying the underlying date type, filter menu options are loaded based on the Advanced filter type.
@@ -372,7 +372,7 @@ We can change the filter UI for all the columns in DataGrid by changing the `Fil
372
372
{% endhighlight %}
373
373
{% endtabs %}
374
374
375
-
<imgalt="Filter mode as advanced filter"src="images/filtering/maui-datagrid-filtering-filterMode-advanced.png"width="500"/>
375
+
<imgalt="Filter mode as advanced filter"src="Images/filtering/maui-datagrid-filtering-filterMode-advanced.png"width="500"/>
376
376
377
377
### Changing filter UI for particular column
378
378
Filter UI view can be changed for a particular column in DataGrid by changing the `FilterMode` property in DataGridFilterView by writing style and added it to [DataGridColumn.FilterPopupStyle]() property.
@@ -391,7 +391,7 @@ Filter UI view can be changed for a particular column in DataGrid by changing th
391
391
{% endhighlight %}
392
392
{% endtabs %}
393
393
394
-
<imgalt="Filter mode as checkbox filter"src="images/filtering/maui-datagrid-filtering-filter-mode-checkbox.png"width="500"/>
394
+
<imgalt="Filter mode as checkbox filter"src="Images/filtering/maui-datagrid-filtering-filter-mode-checkbox.png"width="500"/>
395
395
396
396
## Changing Advanced filter type
397
397
[FilterBehavior]() determines the Advanced filter type loaded in filter view. You can change the advanced filter type using `FilterBehavior`.
@@ -429,7 +429,7 @@ Setting `FilterMode` to AdvancedFilter and [CanGenerateUniqueItems]() to `false`
429
429
{% endhighlight %}
430
430
{% endtabs %}
431
431
432
-
<imgalt="loading performance in advanced filter"src="images/filtering/maui-datagrid-filtering-canGenerateUniqueItems-false.png"width="500"/>
432
+
<imgalt="loading performance in advanced filter"src="Images/filtering/maui-datagrid-filtering-canGenerateUniqueItems-false.png"width="500"/>
433
433
434
434
## Filtering null values
435
435
By default the [AllowBlankFilters]() property is set to true. So, the filter items must have null values. `AllowBlankFilters` must be set to `false` if you want to remove null values from the list of filter items.
Checkbox Filter with `AllowBlankFilters` as `True`
449
449
450
-
<imgalt="Blank filtering in checkbox filtering"src="images/filtering/maui-datagrid-null-filtering-checkbox.png"width="500"/>
450
+
<imgalt="Blank filtering in checkbox filtering"src="Images/filtering/maui-datagrid-null-filtering-checkbox.png"width="500"/>
451
451
452
452
Advanced Filter with `AllowBlankFilters` as `True`
453
453
454
-
<imgalt="Blank filtering in advanced filtering"src="images/filtering/maui-datagrid-null-filtering-advanced.png"width="500"/>
454
+
<imgalt="Blank filtering in advanced filtering"src="Images/filtering/maui-datagrid-null-filtering-advanced.png"width="500"/>
455
455
456
456
## Instant Filtering
457
457
By default, filtering is applied to the columns when OK button is clicked in UI filtering. You must set [ImmediateUpdateColumnFilter]() to True if you wish to update the filters instantly whenever the filter items are updated in the filter popup menu.
0 commit comments