我正在使用react material-ui表组件,我需要在分页中的页面之间导航。 如何添加选项以加载第一页和最后一页,或者设置表分页中所有页面的列表?
感谢。
答案 0 :(得分:0)
我实现了第一页和最后一页:
`<TableCell>
<IconButton onClick={this.handleFirstPage} >
<PaginationFirstPage />
</IconButton>
<IconButton onClick={this.handleLastPage} >
<PaginationLastPage />
</IconButton>
</TableCell>`
但我想在上一页图标之前添加第一页图标,在材料-ui的tablepagination组件中的下一个图标之后添加ast页面图标
but the position is at the end of pagination and i want to add the first icon page before the icon of previous page and the last page after the next page