我需要在表格单元格中添加一些 HTML,因此我使用 TemplateColumn 和 CellTemplate 来执行此操作。
我已经可以进行排序了,但是如何添加过滤?目前它没有填充下拉列表。
当我使用 PropertyColumn 时,过滤效果很好。
<MudDataGrid T="Company" MultiSelection="true" Items="@companies" SortMode="SortMode.Multiple" Filterable="true"
Hideable="true">
<Columns>
<TemplateColumn Sortable="true" Filterable="true" SortBy="x => x.OrganisationName">
<HeaderTemplate>
Organisation
</HeaderTemplate>
<CellTemplate>
HTML here
</CellTemplate>
</TemplateColumn>
</Columns>
</MudDataGrid>
当您将 TemplateColumn 与 CellTemplate 结合使用时,您想要启用过滤功能,还需要添加 FilterTemplate