Mudblazor 数据网格 - 带 templateColumn 的 filterTemplate?

问题描述 投票:0回答:1

我需要在表格单元格中添加一些 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>
filter datagrid mudblazor
1个回答
0
投票

当您将 TemplateColumn 与 CellTemplate 结合使用时,您想要启用过滤功能,还需要添加 FilterTemplate

© www.soinside.com 2019 - 2024. All rights reserved.