禁用React表中的默认分页,而不会影响默认排序函数
因此,我有一个React表,该表可以从Serveride中启用分页的数据。最初,我将手册
属性设置为false
,该使React Auto生成分页数据。在这一点上,分类也可以。由于我依赖于服务器端分页对我来说不太好,因此我必须将手册
属性转换为true
以关闭现在导致的自动生成的插电数据默认排序函数也要消失。请有办法保持分类并关闭React表中的自动分页。谢谢。
表组件当前返回此:
<ReactTable
columns={columns}
data={data}
pageSize={data.length}
defaultSorted={sort}
getTrProps={getTrProps}
manual={true}
{...paginationData} // custom pagination data
/>
So I have a react table that renders data from serverside with pagination enabled. Initially, I has the manual
attribute set to false
which makes react auto generate the pagination data. At this point, the sorting was okay too. As that would not work well for me as I depended on server side pagination, I had to turn the manual
attribute to true
to turn off the auto generated gagination data which now causes the default sort function to go away as well. Please is there a way to keep the sorting and just turn off the auto pagination in react table. Thanks.
Table component returns this currently:
<ReactTable
columns={columns}
data={data}
pageSize={data.length}
defaultSorted={sort}
getTrProps={getTrProps}
manual={true}
{...paginationData} // custom pagination data
/>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论