首先先介紹 ZK 長用於顯示資料的 listbox 元件,如下圖
通常一個顯示資料的元件 listbox 來有包含兩個子元件 listhead、listitem
顧名思義 listhead 就是顯示最上面顯示欄位名稱的地方 listitem 則是顯示每筆資料的元件
<listbox id="box" multiple="true" rows="10" >
<listhead>
<listheader label="countryID"/>
<listheader label="locationNO" />
<listheader label="locationName" />
<listheader label="countryName" />
</listhead>
<listitem>
<listcell />
<listcell />
<listcell />
<listcell />
</listitem>
</listbox>