From 5352457c6f69ff4c44ab89b3e8757df3b6c5dd72 Mon Sep 17 00:00:00 2001 From: ashaamir Date: Thu, 11 Jul 2024 16:09:52 +0300 Subject: [PATCH] SEO-184196-BLAZOR-dropdownlist-permanet-redirect --- blazor/dropdown-list/filtering.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blazor/dropdown-list/filtering.md b/blazor/dropdown-list/filtering.md index 692c8702ea..439171aabb 100644 --- a/blazor/dropdown-list/filtering.md +++ b/blazor/dropdown-list/filtering.md @@ -85,7 +85,7 @@ You can use [FilterBarPlaceholder](https://help.syncfusion.com/cr/blazor/Syncfus DropDownList component filter queries can be customized using [Filtering](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.DropDowns.DropDownListEvents-2.html#Syncfusion_Blazor_DropDowns_DropDownListEvents_2_Filtering) event. You can also filter the text in multiple columns in the data source. -In the below sample demonstration, filter the data using its `FirstName` or `LastName` field. Hence in the Filtering event, [Predicate](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.WhereFilter.html#Syncfusion_Blazor_Data_WhereFilter_Condition) is used with `or` condition for filtering both the fields. +In the below sample demonstration, filter the data using its `FirstName` or `LastName` field. Hence in the Filtering event, [Predicate](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.Data.WhereFilter.html#Syncfusion_Blazor_Data_WhereFilter_predicates) is used with `or` condition for filtering both the fields. For instance , the data source item consists of `FirstName` as `Nancy` and `LastName` as `Davalio`. But you can filter the data by typing the `N` or `D` character and it will showcase the `Nancy`(FirstName field) in the popup.