任何人都可以帮助我使用 zk (zkoss) 框架吗?我是这个框架的新手。我想使用 jsonobject 列表制作一个网格/列表框。我没有找到可以帮助我使用 jsonobject 列表创建网格/列表框的示例。我想创建这样的简单列表框:
<?page title="Table of Users" contentType="text/html;charset=UTF-8"?>
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" ?>
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
<zk>
<window id="windowUsers" width="500px" apply="${userController}" viewModel="@id('vm')">
<groupbox mold="3d">
<caption label="Table of Users" />
<listbox model="@load(vm.listUser)" width="400px">
<listhead>
<listheader label="User Id"/>
<listheader label="Name"/>
<listheader label="Address"/>
<listheader label="Phone"/>
</listhead>
<template name="model" var="list">
<listitem>
<listcell label="@load(list.id)" />
<listcell label="@load(list.name)" />
<listcell label="@load(list.address)" />
<listcell label="@load(list.phone)" />
</listitem>
</template>
</listbox>
</groupbox>
</window>
提前致谢。