Hi,
In SfComboBox ,I used multicolumn and added a filter feature for all columns. I encountered three problems:
1- If the searched text is in the combobox items (at least in one of the columns), I want the first item in the popup to be High light and the user to select the item from the keyboard after pressing Enter.
2. The combo box is located in the
public async Task OnFiltering(Syncfusion.Blazor.DropDowns.FilteringEventArgs args)
{
args.PreventDefaultAction = true;
var query = new Syncfusion.Blazor.Data.Query().Where(new Syncfusion.Blazor.Data.WhereFilter() { Field = "Title1", Operator = "contains", value = args.Text, IgnoreCase = true }.Or(fieldName: "Title2", @operator: "contains", value: args.Text, ignoreAccent: true));
query = !string.IsNullOrEmpty(args.Text) ? query : new Syncfusion.Blazor.Data.Query();
await objCombo.FilterAsync(lstCmbItem, query);
}
Thank you
Hi Deepak Ramakrishnan,
I do not have access to the following link
Thank you