<zk xmlns:w="http://www.zkoss.org/2005/zk/client">
<window id="win" title="Hello World!!" border="normal" apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('pkg$.TestComposer')">
<grid model="@bind(vm.data)">
<columns children="@load(vm.arj)">
<template name="children">
<column label="@bind(each.name)" />
</template>
</columns>
<rows>
<template name="model" var="r">
<row children="@load(vm.arj)">
<template name="children" var="c">
<cell>
<label value="@bind(r.get(c.name))"/>
</cell>
</template>
</row>
</template>
</rows>
</grid>
</window>
</zk>