Tapestry5使用hashmap显示网格组件
我试图尝试使用网格组件显示哈希图。如果我使用
List list = CollectionFactory.newList(MyHashMap);
它,它会返回一个列表,但是在我的模板页面上,当传递我的内容时,我会看到
和 false
参数 t:souce="list"
到我的网格组件,因此我的网格组件只返回一行。
一些代码片段会有很大的帮助。
非常感谢
I am trying to attempt to display a hashmap using a grid component. If I use
List list = CollectionFactory.newList(MyHashMap);
it returns a list however on my template page I see <theader>Empty</tHeader>
and <tbody>false</tbody>
when passing my parameter t:souce="list"
to my grid component, therefore my grid component only returns one row.
Some code snippets would be a great help.
Many thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了拼写错误(请参阅我的评论)之外,尝试将哈希图值作为 newList 方法的输入:
besides the typo (see my comment) try to give the hashmap values as input to the newList method: