<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>
I have grid
having two column.
The first row is static and rest are rendered using template
.
The resulted grid does not render the static row...It render the templated row fine..
Why Zk is not rendering the static row ?