自定义分页的任何示例?材料表和reactjs
. 我想将页面大小传递给服务器,并且需要从分页中隐藏第一个和最后一个按钮
问问题
16751 次
1 回答
20
研究此示例https://material-table.com/#/docs/features/component-overriding以便更好地理解我将显示的代码:有了这个,您可以直接访问分页组件并自己进行调用.
`components={{
Pagination: props => (
<TablePagination
{...props}
rowsPerPageOptions={[5, 10, 20, 30]}
rowsPerPage={this.state.numberRowPerPage}
count={this.state.totalRow}
page={
firstLoad
? this.state.pageNumber
: this.state.pageNumber - 1
}
onChangePage={(e, page) =>
this.handleChangePage(page + 1)
}
onChangeRowsPerPage={event => {
props.onChangeRowsPerPage(event);
this.handleChangeRowPerPage(event.target.value);
}}
/>
),
}}`
使用相同的方式可以更改此按钮的文本,请查看此示例https://material-table.com/#/docs/features/localization。
此致
于 2019-05-20T13:31:07.310 回答