我有以下结构显示在 zul 文件中,并从 Java 控制器获取诊所对象列表。
我在 zul 中尝试了几个 zk 组件,但没有运气。我应该使用什么组件forEach
?
- 列表框
- 项目清单
- 网格
这是需要显示的结构:
For each clinic
{
For each clinic.location
{
For each (clinic.location.provider)
{
Output (provider display name)
}
Output (clinic name)
Output (clinic.location address)
Output (clinic.locatoin telephone number)
Output (clinic.web address)
}
}