gpt4 book ai didi

javascript - 在 Material-UI 中禁用表格分页

转载 作者:行者123 更新时间:2023-12-05 02:38:57 25 4
gpt4 key购买 nike

我使用 TablePagination带有 React 的 Material-UI 组件。

但是这个组件没有disabled属性。

我有一个 bool 值 loading,我想将其用作启用或禁用 TablePagination 中的箭头的参数。

如何实现这样的结果?

我尝试将 disabled 属性传递给 TablePagination,但它不起作用。

最佳答案

没有一个单独的 disabled 开关,但是你可以像这样设置内部按钮组件的 disabled 属性:

<TablePagination
SelectProps={{
disabled: isDisabled
}}
backIconButtonProps={
isDisabled
? {
disabled: isDisabled
}
: undefined
}
nextIconButtonProps={
isDisabled
? {
disabled: isDisabled
}
: undefined
}
{...}
/>

现场演示

Codesandbox Demo

关于javascript - 在 Material-UI 中禁用表格分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69343657/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com