如果在MudBlazor表中选择了行,则禁用按钮



如果在MudTable中没有选择行,我试图禁用按钮,所以我试图做以下事情。

Disabled=(selectedRow is null)

我该如何正确地做这件事?

使用MudTable的.SelectedItem属性

<MudTable @ref="mudTable">
<!-- other table stuff inside here -->
</MudTable>
<button disabled="@(mudTable.SelectedItem == null)" 
@onclick="DoSomething">Click Here</button>

相关内容

  • 没有找到相关文章

最新更新