Home   Single Page

スクロール可能なリストボックス

rowsプロパティ又はheightプロパティを指定し、リスト項目がその長さを超えれば、リストボックスはスクロール可能になります。

<listbox width="250px" rows="4">
    <listhead>    
        <listheader label="Name" sort="auto"/>        
        <listheader label="Gender" sort="auto"/>        
    </listhead>    
    <listitem>    
        <listcell label="Mary"/>        
        <listcell label="FEMALE"/>        
    </listitem>    
    <listitem>    
        <listcell label="John"/>        
        <listcell label="MALE"/>        
    </listitem>    
    <listitem>    
        <listcell label="Jane"/>        
        <listcell label="FEMALE"/>        
    </listitem>    
    <listitem>    
        <listcell label="Henry"/>        
        <listcell label="MALE"/>        
    </listitem>    
    <listitem>    
        <listcell label="Michelle"/>        
        <listcell label="FEMALE"/>        
    </listitem>    
</listbox>

rowsプロパティ

rowsプロパティは参照可能なrows(列)の数を設定します。ゼロに設定することより、リストボックスはそれ自身のサイズを変更し、可能な限り項目数に対応します。