Hi,
I am using a foreign column to display list of employees. I would like to be able to filter (contain) the list of employees in the drop down box, but even with AllowFiltering="true" FilterSettings="@(new FilterSettings{ Operator = Operator.Contains })", I can't get any filtering.
Thanks for your help.
ma
<SfGrid TValue="ConfigOwnerBusinessLine" Height="315" Toolbar="@(new List<string>() { "Add", "Edit", "Delete", "Cancel", "Update" })"
AllowResizing="true" AllowReordering="true" AllowGrouping="false" AllowPaging="true" AllowFiltering="false" AllowSelection="true" AllowExcelExport="false">
<SfDataManager Url="api/OwnerBusinessGrid" InsertUrl="api/OwnerBusinessGrid/Insert" UpdateUrl="api/OwnerBusinessGrid/Update" RemoveUrl="api/OwnerBusinessGrid/Delete" Adaptor="Syncfusion.Blazor.Adaptors.UrlAdaptor" CrossDomain=true></SfDataManager>
<GridEditSettings AllowAdding="true" AllowEditing="true" AllowDeleting="true"></GridEditSettings>
<GridPageSettings PageSize="7"></GridPageSettings>
<GridColumns>
<GridColumn Field="Id" HeaderText="Id" IsPrimaryKey="true" IsIdentity="true" Visible="false"></GridColumn>
<GridForeignColumn Field="Employee" ForeignKeyField="Id" ForeignKeyValue="FullName" ForeignDataSource="@EmployeeList" HeaderText="Employé" AllowFiltering="true" FilterSettings="@(new FilterSettings{ Operator = Operator.Contains })" Type="ColumnType.String"></GridForeignColumn>
<GridColumn Field="IsActive" HeaderText="Actif" Type="ColumnType.Boolean"></GridColumn>
</GridColumns>
</SfGrid>