zk 组合框数据绑定
下面的 zk 代码仅显示在项目上...
我需要它来显示 tmp 中的所有元素。有什么想法吗?谢谢
<zscript>
<![CDATA[
List tmp=Arrays.asList(new String[]{"a","b","c"});
]]>
</zscript>
<combobox id="mycb" model="@{tmp}">
<comboitem self="@{each=row}" label="xxx" value="yyy">
</comboitem>
</combobox>
The zk code below only shows on item...
I need it to show all elements in tmp. any idea? thanks
<zscript>
<![CDATA[
List tmp=Arrays.asList(new String[]{"a","b","c"});
]]>
</zscript>
<combobox id="mycb" model="@{tmp}">
<comboitem self="@{each=row}" label="xxx" value="yyy">
</comboitem>
</combobox>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在 ZUL 文件中初始化数据绑定器。此外,无需将数组包装为列表(如果您愿意,也可以)。以下代码有效:
You need to initialize the databinder in your ZUL file. In addition there is no need to wrap your array as a List (you can if you want to). The following code works: