GWT:在 UiBinder 中引用另一个小部件?
我有以下 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,你必须使用大括号:
Yes, you have to use curly brackets: