任何人都可以幫我使用zk(zkoss)框架嗎?我在這個框架中是新的。我想使用jsonobject列表來創建一個網格/列表框。我沒有發現任何可以幫助我使用jsonobject列表創建網格/列表框的示例。我要創建簡單列表框這樣的:ZK Grid/Listbox使用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>
感謝的提前。