在分页struts2中实现动态页面大小+ 爪哇
我正在尝试通过Struts2中的显示标签实现分页。 现在我的要求是我有一个组合框,其中有一些页面大小值,例如 5、10、15 ..
那么,如何更新 Struts2 中显示标签的页面大小值?
I am trying to implement pagination through display tag in Struts2
.
Now my requirement is I have a combo box which has some page size value like 5, 10, 15 ..
So, How can I update that value in page size of display tag in Struts2
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在操作上创建一个公开的属性,例如命名为 selectedPageSize。 该属性可以设置为默认大小(在示例 5 中)。 您将保留一个隐藏的表单字段来存储当前选定的值。 然后,这将在您的视图中使用显示标签,类似于:
You would create an exposed property on your action, named for example selectedPageSize. This property could be set to a default size (in your example 5). You would keep a hidden form field storing the currently selected value. This would then be used in your view with the display tag similar to:
我对 struts2 不太确定,但对于 JSF 一般来说,如果您将用于分页的任何组件绑定到支持 bean 中,则可以通过操作设置诸如此类的属性。
I'm not sure about struts2 in particular, but with JSF in general, if you bind whatever component you use to paginate into your backing bean, you can set properties such as that through an action.