2017-10-12 12 views
0

私はreact material-ui tablesコンポーネントを使用しています。ページ間を移動する必要があります。 最初のページと最後のページを読み込むオプションを追加するにはどうしたらいいですか、またはテーブルのページ区切りですべてのページのリストを設定するにはどうすればよいですか?first-material-uiテーブルページネーションへの移動

ありがとうございました。

+0

何か試しましたか? –

+0

Material-ui @ nextにはネイティブのページ区切りコンポーネントがありますが、ページ変更機能を自分で実装する必要があります。 https://material-ui-next.com/demos/tables/ – MEnf

+0

テーブルのページ設定コンポーネントの具体的な実装方法を教えてください。 – wijden

答えて

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 
関連する問題