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