ZK 對listbox綁定的物件進行排序

zk,listbox,sorting

可以在listbox中的listheader加入sort屬性,sort="auto(物件屬性)",可參考Documatation中的Auto-sorting on Fields 片段,範例如下:

<listbox model="@load(vm.stks)">
        <listhead>
            <listheader label=" 股票代號" sort="auto(stkCode)" />
            <listheader label="股票名稱" sort="auto(stkName)" />
        </listhead>
        <template name="model">
            <listitem>
                <listcell label="${each.stkCode}" />
                <listcell label="${each.stkName}" />
            </listitem>
        </template>
</listbox>

 

 

Reference: