ASPxGridView 每页行数
如何将每页最大行数设置为 5?默认值为 10
<SettingsPager PageSize="5">
。...不起作用,
感谢帮助
How can I set maximum number of rows per page to 5? Default is 10.
<SettingsPager PageSize="5">
... doesnt work
thanks for help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
设置 GridView.PageSize 属性到“5”
试试这个:
Set GridView.PageSize Property to "5"
Try this:
出现此问题的原因可能是您正在从 Cookie 或保存设置的任何其他存储加载
ASPxGridView
设置。我说得对吗?如果是这样,您应该删除 cookie 或在Page_LoadComplete
方法中设置SettingsPager.PageSize
。The problem might appear because you are loading
ASPxGridView
settings from cookies or any other storage where they were saved. Am I right? If so, you should either delete a cookie or set theSettingsPager.PageSize
within thePage_LoadComplete
method.我将每页行数设置为 50,但默认情况下为 10。
在客户端使用此
在服务器端使用
I set Number of rows per page to 50 but by Default its 10.
On client side use this
On server side use
仅当我在 PageLoad 上的 codeBehind 中以编程方式设置它时,它才适用于我。
It works for me only when I set it programmaticaly in codeBehind on PageLoad.
请检查您是否为网格视图或附加到网格视图的任何其他用户控件设置了任何皮肤。由于自定义导出控件绑定到网格视图,我遇到了同样的问题。
Please check if you have any skin set for the grid view or any other user control attached to the grid view.I faced the same issue due to the custom export control bind to the grid view.