DevExpress でのチェックボックスリスト(ASPxCheckBoxList)の初期選択設定のサンプルです。
現状の画面デザインはこのようになっています。
<チェックボックスリストの初期選択設定>
・コンテキストメニューの「Designer」から「Selected」を「True」に変更します。
↓
※「中国」も同様に選択設定を実施
【サンプルプログラム】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
<div> <dx:ASPxCheckBoxList ID="ASPxCheckBoxList1" runat="server" ValueType="System.Int32" EnableTheming="True" SelectedIndex="4" Theme="RedWine"> <Items> <dx:ListEditItem Text="北海道" Value="1" /> <dx:ListEditItem Text="東北" Value="2" /> <dx:ListEditItem Text="関東" Value="3" /> <dx:ListEditItem Text="中部" Value="4" /> <dx:ListEditItem Text="近畿" Value="5" Selected="True" /> <dx:ListEditItem Text="中国" Value="6" Selected="True" /> <dx:ListEditItem Text="四国" Value="7" /> <dx:ListEditItem Text="九州" Value="8" /> <dx:ListEditItem Text="沖縄" Value="9" /> </Items> </dx:ASPxCheckBoxList> </div> |
それでは、実行して動作確認を行います。
↓
無事にチェックボックスリスト(ASPxCheckBoxList)の初期選択設定が出来ました。
- 投稿タグ
- ASPxCheckBoxList