GWT:在 UiBinder 中引用另一个小部件?

发布于 2024-11-29 11:07:07 字数 345 浏览 2 评论 0原文

我有以下 UiBinder 代码:

    <c:CellList ui:field="membersList" />
    <c:SimplePager display="membersList" />

我想让寻呼机使用单元格列表作为其显示。但是,上面的代码失败了,因为它试图解析字符串“membersList”,而不是将其用作对小部件的引用:

    [ERROR] [foo] - Cannot parse value: "membersList" as type HasRows

有什么方法可以使其工作吗?

I have the following UiBinder code:

    <c:CellList ui:field="membersList" />
    <c:SimplePager display="membersList" />

I want to have the pager use the cell list as its display. However, the above code fails because it is trying to parse the string "membersList" instead of using it as a reference to a widget:

    [ERROR] [foo] - Cannot parse value: "membersList" as type HasRows

Is there any way to make this work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

拒绝两难 2024-12-06 11:07:07

是的,你必须使用大括号:

<c:CellList ui:field="membersList" />
<c:SimplePager display="{membersList}" />

Yes, you have to use curly brackets:

<c:CellList ui:field="membersList" />
<c:SimplePager display="{membersList}" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文