<grid vflex="1" model="@bind(vm.getModel())">
<columns menupopup="auto">
<column label="Name" sort="auto(name)" />
<column label="Type" sort="auto(type)" />
</columns>
<rows>
<row>
<button label="Left" /> // This do not render
<label value="Right" /> // This do not render
</row>
<template name="model">
<row>
<label value="@bind(each.name)" />
<label value="@bind(each.type)" />
</row>
</template>
</rows>
</grid>
私はgrid
2つの列を持っています。
最初の行は静的で、残りは を使用してレンダリングされますtemplate
。結果のグリッドは静的な行をレンダリングしません...テンプレート化された行をうまくレンダリングします.なぜZkは静的な行をレンダリングしないのですか?