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

これは、C1ListViewControlGroupItem のデフォルト設定です。C1ListViewControlGroupItem が “normal select” に設定されている場合は、次の図に示すように、ドロップダウンリストから項目を選択できます。

normal select 項目の作成に使用されるマークアップは次のようになります。

ソースビュー
コードのコピー
<cc1:C1ListViewControlGroupItem LabelText="優先度">
   <innerlistcontrols rows="5">
      <asp:ListItem>1 </asp:ListItem>
      <asp:ListItem>2 </asp:ListItem>
      <asp:ListItem>3 </asp:ListItem>
      <asp:ListItem>4 </asp:ListItem>
      <asp:ListItem>5 </asp:ListItem>
   <innerlistcontrols>
</cc1:C1ListViewControlGroupItem>

選択項目は、<innerlistcontrols>マークアップを使用して作成されます。C1ListView デザイナフォームで作業している場合は、マークアップを使用するか、[編集]タブで正しい C1ListViewControlGroupItem を選択して、関連するプロパティを設定することができます。

また、次の図に示すように、オーバーレイして開くドロップダウンメニューに、ポップが移動するように選択項目を表示することもできます。

このタイプの選択項目を作成するには、NativeMenu プロパティを False に設定します。

ソースビュー
コードのコピー
<cc1:C1ListViewControlGroupItem LabelText="優先度" NativeMenu="False">
  <innerlistcontrols rows="5">
      <asp:ListItem>1</asp:ListItem>
      <asp:ListItem>2</asp:ListItem>
      <asp:ListItem>3</asp:ListItem>
      <asp:ListItem>4</asp:ListItem>
      <asp:ListItem>5</asp:ListItem>
   </innerlistcontrols>
</cc1:C1ListViewControlGroupItem>
関連トピック