使用速度分页
他们的宏/工具可用于速度分页(spring用作框架)
Is their is macros / tools available for pagination in velocity (spring used as framework)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
他们的宏/工具可用于速度分页(spring用作框架)
Is their is macros / tools available for pagination in velocity (spring used as framework)
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
看一下 org. apache.velocity.tools.view.PagerTool
允许您翻阅项目列表。
Take a look at the org.apache.velocity.tools.view.PagerTool
which allows you to page through a list of items.
作为替代方法,您可以使用一些 JQuery 插件来处理所有客户端处理并从服务器端代码获取数据。在这种情况下,您可以生成一个具有速度的普通表,并且插件将在服务器端动态添加分页。
您可以尝试 http://www.datatables.net/ 因为它可以处理分页、过滤、排序,并且有很多功能更多功能。这里解释了如何将 DataTables 与 java servlet 应用程序集成 http://www .codeproject.com/KB/java/JQuery-DataTables-Java.aspx。在此示例中使用了 JSP 和 servlet,但您可以轻松地将其更改为速度,因为服务器端代码很简单。
As alternative approach you can use some JQuery plugin that handles all client-side processing and take data from the server-side code. In that case you can generate a plain table with velocity, and plugin will add pagination dinamically on the server-side.
You migh try http://www.datatables.net/ because it handles pagination, filtering, ordering and has much more features. Here is explained how you can integrate DataTables with java servlet application http://www.codeproject.com/KB/java/JQuery-DataTables-Java.aspx. In this example is used JSP and servlet but you can easily change this to velocity because server side code is simple.