禁用React表中的默认分页,而不会影响默认排序函数

发布于 2025-01-23 07:12:24 字数 598 浏览 0 评论 0原文

因此,我有一个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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文