我想使用 MudBlazor 从 MudDataGrid 的标题中删除 3 个点(选项)

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

我正在使用 MudDataGrid,我只想要默认排序和整体过滤,但我想要排序和过滤图标旁边的三个点(选项)。 我已经给出了 Filterable="true" 和 SortMode="SortMode.Single" ,但没有指定任何要显示的三个点,但三个点选项自动出现,有没有办法将三个点选项设置为 false,以便可以删除三个点来自 MudDataGrid 的显示。

reference

复制链接: https://try.mudblazor.com/snippet/wkweEDbhGJvPWuVi

sorting datagrid header filtering mudblazor
1个回答
0
投票

使用

ShowColumnOptions=false
隐藏选项。您可以为整个数据网格或按列设置它MudDataGrid API

<MudDataGrid Items="@Elements.Take(4)" Filterable="true" ShowColumnOptions="false">
    <Columns>
        <PropertyColumn Property="x => x.Number" Title="Nr" />
        <PropertyColumn Property="x => x.Sign" />
        <PropertyColumn Property="x => x.Name" />
        <PropertyColumn Property="x => x.Position" />
        <PropertyColumn Property="x => x.Molar" Title="Molar mass" />
    </Columns>
</MudDataGrid>

片段

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