材质用户界面-删除组件TablePagination中的“每页行数”

时间:2018-07-19 00:36:11

标签: material-ui material-ui-next

如何删除选择的“每页行数”?我不想在我的项目中使用它...

enter image description here

3 个答案:

答案 0 :(得分:6)

正确答案,您将在文档中看到。 参见属性“ rowsPerPageOptions”。文档显示:

  

自定义每页选择字段的行选项。如果少于两个选项可用,则不会显示选择字段。

因此,您必须指定rowsPerPageOptions = {[]}就是这样。 Doc。页面:https://material-ui.com/api/table-pagination/

抱歉,我的语言。

答案 1 :(得分:1)

只需将labelRowsPerPage标记中的属性TablePagination分配给一个空字符串。

<TablePagination
  labelRowsPerPage=''
  {...otherProps}
  />

答案 2 :(得分:0)

只需将您的材料属性(分页为false)添加到Material Table的JSX调用中

<MaterialTable
    //your other props
    options={{
        paging: false
    }}
/>