8 열이있는 groupbox
구성 요소 안에 listbox
을 만들려고합니다. 그러나 마지막 열은 사라졌으며 목록 상자에 가로 스크롤 막대가 있더라도 이유를 알 수 없습니다. 내 zk.xml은 많은 것들에스크롤 막대 목록 상자의 끝이 나뉘어져 있고 목록 헤더 중 하나가 표시되지 않습니다.
`<library-property>
<name>org.zkoss.zul.nativebar</name>
<value>true</value>
</library-property>`
을 그러나 그것은 작동하지 않습니다 : 나는 추가 시도했습니다. 잘못 무슨 일이 일어나고 있는지에 대한
<groupbox
visible="@bind(vm.gbxGridPo)" width="100%">
<caption label="${labels.common.label.hasil_pencarian}" style="color:blue" />
<vlayout >
<checkbox name="chkBPKB" label="Print SPP/SIP BPKB" checked="@bind(vm.chkBPKB)" />
<listbox model="@load(vm.poDTOs)" mold="paging" pageSize="10"
emptyMessage="Tidak ada data" checkmark="true"
width="97%" style="overflow:hidden"
selectedItem="@bind(vm.aksiSelectedPO)"
onClick="@command('onCheckRadio')">
<listhead >
<listheader label="${labels.common.label.pilih}" align="center" width="50px" />
<listheader label="${labels.common.label.sentra}" align="center" sort="auto(sentraID)" width="150px" />
<listheader label="${labels.common.label.unit}" align="center" sort="auto(unitID)" width="150px" />
<listheader label="${labels.common.label.jenis_pihak_ketiga}" align="center" sort="auto(thirdPartyTypeID)" width="150px" />
<listheader label="${labels.common.label.nama_pihak_ketiga}" align="center" sort="auto(thirdPartyName)" width="150px" />
<listheader label="${labels.common.label.no_po}" align="center" sort="auto(poNumber)" width="120px"/>
<listheader label="${labels.common.label.nama_lengkap}" align="center" sort="auto(customerName)" width="180px" />
<listheader label="${labels.common.label.no_aplikasi}" align="center" sort="auto(orderID)" width="140px"/>
</listhead>
<template name="model" status="s" var="item">
<listitem>
<listcell />
<listcell label="@load(item.sentraID)" />
<listcell label="@load(item.unitID)" />
<listcell label="@load(item.thirdPartyTypeID)" />
<listcell label="@load(item.thirdPartyName)" />
<listcell label="@load(item.poNumber)" />
<listcell label="@load(item.customerName)" />
<listcell label="@load(item.orderID)" />
</listitem>
</template>
</listbox>
</vlayout>
</groupbox>
문제를 재현하는 데 필요한 최소한으로 줄여주십시오. 예를 들어 모든 바인딩을 사용하면 zul을 정리하지 않고 고정 된 텍스트로 교체하지 않고 바로 zul을 사용할 수 없습니다. –