ListView for ASP.NET Web Forms
checkboxList
C1ListView の要素 > C1ListView の項目 > C1ListViewControlGroupItem > checkboxList

“checkboxlist” に設定された C1ListViewControlGroupItem は、チェックボックス型の複数選択項目を作成します。

チェックボックス型の C1ListViewControlGroupItem の作成に使用されるマークアップは次のようになります。

ソースビュー
コードのコピー
<cc1:C1ListViewControlGroupItem ControlGroupType="checkboxlist" LabelText="優先度">
    <innerlistcontrols rows="1" width="400px">
       <asp:ListItem>1</asp:ListItem>
       <asp:ListItem>2</asp:ListItem>
       <asp:ListItem Selected="True">3</asp:ListItem>
       <asp:ListItem>4</asp:ListItem>
       <asp:ListItem>5</asp:ListItem>
     </innerlistcontrols>
 </cc1:C1ListViewControlGroupItem>
関連トピック