Zk绑定中的ListHeader

时间:2013-10-08 19:57:42

标签: java data-binding zk zk-grid

我在zk的listheader中加载日期时遇到问题。但是我需要在一周中的每一天加载相同的数据,在我的例子中,变量loadData是一个包含两个阵营的字符串列表:{“ atr1“,”atr2“},任何人都可以给我任何想法

代码:

<zk>
    <div apply="org.zkoss.bind.BindComposer" viewModel="@id('vm') @init('campaign.Campaign')">
        <window id="usersEdit">
            <listbox>
                <auxhead>
                    <auxheader colspan="2" class="topic">Lunes</auxheader>
                    <auxheader colspan="2" class="topic">Martes</auxheader>
                    <auxheader colspan="2" class="topic">Miercoles</auxheader>
                    <auxheader colspan="2" class="topic">Jueves</auxheader>
                    <auxheader colspan="2" class="topic">Viernes</auxheader>
                    <auxheader colspan="2" class="topic">Sabado</auxheader>
                    <auxheader colspan="2" class="topic">Domingo</auxheader>
                </auxhead>
                <listhead children="@load(vm.loadData)">
                    <template name="children" var="headerName">
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                        <listheader label="@load(headerName)" sort="auto"></listheader>
                    </template>
                </listhead>
            </listbox>
        </window>
    </div>
</zk>

问题是我在一周中的每一天的列中都没有相同的数据。

我需要这样的东西:

  lunes       martes       Miercoles      Jueves       Viernes       Sabado
atr1  atr2   atr1  atr2   atr1  atr2    atr1  atr2    atr1  atr2   atr1  atr2 ...

问题是listheader按我的列名称排序,我有这样的事情:

  lunes       martes       Miercoles      Jueves       Viernes       Sabado
atr1  atr1   atr1  atr1   atr1  atr1    atr2  atr2    atr2  atr2   atr2  atr2 ...

但我如何解决我的问题,因为我需要加载列表,因为列表是我数据库中的查询。

0 个答案:

没有答案