Tapestry5使用hashmap显示网格组件

发布于 2024-08-26 07:26:49 字数 297 浏览 5 评论 0原文

我试图尝试使用网格组件显示哈希图。如果我使用

List list = CollectionFactory.newList(MyHashMap);

它,它会返回一个列表,但是在我的模板页面上,当传递我的内容时,我会看到 Emptyfalse参数 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 技术交流群。

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

发布评论

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

评论(1

GRAY°灰色天空 2024-09-02 07:26:49

除了拼写错误(请参阅我的评论)之外,尝试将哈希图值作为 newList 方法的输入:

CollectionFactory.newList(MyHashMap.values());

besides the typo (see my comment) try to give the hashmap values as input to the newList method:

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