基于内容区域/分辨率的自动分页 - Telerik Grid
我正在尝试完成某件事,但我不确定这是否完全可能。
我有一个使用 ASP.NET MVC 的 Telerik MVC 网格。
网格的默认分页大小为 10,但是我希望能够根据用户分辨率的大小调整页面大小(行数)。这可能吗?
谢谢,
保罗
I am trying to accomplish something and I am not sure if it is completely possible.
I have a Telerik MVC Grid using ASP.NET MVC.
The default paging size for the grid is 10, however I want to be able to adjust the size the page (the number of rows) based on the size of the user's resolution. Is this possible?
Thanks,
Paul
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是绝对可能的。
我创建了一个完成相同任务的解决方案 - 但是您必须对其进行修改才能获得网格自身的正确高度(排除任何菜单/页眉/页脚等。)
这些步骤应该到达那里:
首先 - 您需要向 MVC 网格添加一个“onLoad”事件:
下一步 - 创建一个 Javascript 事件来处理 $(document) 中的“onLoad”。 ready():
最后 - 最后一步是计算网格未占用的空间(Firebug 可能会有所帮助)并对其进行修改,直到您的“公式”在大多数浏览器中都适用:
公式:
这应该根据您的窗口高度自动调整您的行数。唯一棘手的部分是使用占用的空间量计算出您自己的“公式”,然后选择一个要除以的神奇数字。
希望这有帮助!
It is definitely possible.
I created a solution that accomplishes the same thing - however you will have to tinker with it to get the proper height of your grid on it's own (excluding any menus/headers/footers etc.)
These steps should get you there:
Firstly - you will need to add an "onLoad" event to your MVC Grid:
Next - Create a Javascript event to handle the "onLoad" in your $(document).ready():
Finally - the last step will be to calculate the space that is not taken up by the grid (Firebug can be helpful) and tinker with it until your "formula" works out in most browsers:
Formula :
That should automatically adjust your your number of rows based on your window height.The only tricky part is figuring out your own "formula" using the amount of occupied space and then picking a magic number to divide by.
Hope this helps!