如何访问ice:dataTable的varStatus、ice:dataPaginator的firstRowIndexVar?他们在哪里?

发布于 2024-09-29 18:35:29 字数 95 浏览 1 评论 0原文

如何以编程方式访问 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网白 2024-10-06 18:35:29

它们不是请求参数的一部分。它们是服务器端 JSF 组件树的一部分。从 FacesContext# 开始getViewRoot()。为了简化调试,请考虑使用 binding 属性将组件绑定到支持 bean。例如

<ice:dataTable binding="#{bean.dataTable}">

public class Bean {
    private UIData dataTable;
    // ...
}

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 using binding attribute. E.g.

<ice:dataTable binding="#{bean.dataTable}">

with

public class Bean {
    private UIData dataTable;
    // ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文