如何访问ice:dataTable的varStatus、ice:dataPaginator的firstRowIndexVar?他们在哪里?
如何以编程方式访问 varStatus 变量和 firstRowIndexVar 变量?我在请求参数中找不到它们。我什至很乐意在调试器中检查它们。
谢谢, 伊莱
How can I access the varStatus variable and the firstRowIndexVar variable programmatically? I couldn't find them in the request parameters. I'd even be happy just to inspect them in the debugger.
Thanks,
Eli
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它们不是请求参数的一部分。它们是服务器端 JSF 组件树的一部分。从
FacesContext# 开始getViewRoot()
。为了简化调试,请考虑使用binding
属性将组件绑定到支持 bean。例如与
They are not part of the request parameters. They are part of the JSF component tree in the server side. Start with
FacesContext#getViewRoot()
. To ease debugging, consider binding the component to a backing bean usingbinding
attribute. E.g.with