英文:
How to initially hide the Show/Hide columns button in material react table?
问题
如何最初隐藏 material-react-table 中的“显示/隐藏列”按钮?
我在文档中搜索过,但找不到有关如何隐藏此按钮的任何信息。
提前感谢。
英文:
How can I initially hide the "Show/Hide columns" button in material-react-table?
I searched through the documentation but couldn't find any information on how to hide this button.
Thanks in advance.
答案1
得分: 1
你可以通过在Material React Table中将enableHiding
属性设置为false
来移除顶部工具栏中的列隐藏按钮。
示例:
<MaterialReactTable
columns={columns}
data={data}
enableHiding={false}
/>
结果:
可工作的 CodeSandbox 示例: https://codesandbox.io/p/sandbox/dreamy-browser-s8893s?file=%2Fsrc%2FTS.tsx%3A106%2C36
英文:
You can remove the column hiding button from the top toolbar by setting the enableHiding
prop to false
in Material React Table.
Example:
<MaterialReactTable
columns={columns}
data={data}
enableHiding={false}
/>
Result:
Working CodeSandbox: https://codesandbox.io/p/sandbox/dreamy-browser-s8893s?file=%2Fsrc%2FTS.tsx%3A106%2C36
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论