DevExpress のラジオボタン設定のサンプルです。
「ASPxButton」を使用します。
現状の画面デザインはこのようになっています。
設定する内容は2点です。
1点目:ボタンのグループ設定(ボタン数分)
2点目:ボタンの初期選択設定
「ASPxButton」オブジェクトのプロパティを変更していきます。
※プロパティ画像は「グループ表示」
<ラジオボタン設定>
1点目:ボタンのグループ設定(ボタン数分)
「GroupName=”Group”」に変更します。
※”Group”は任意文字
↓
2点目:ボタンの初期選択設定
「Checked=”True”」に変更します。
↓
【生成PG】
1 2 3 4 5 6 7 8 9 10 11 |
<div> <dx:ASPxButton ID="ASPxButton1" runat="server" Text="ボタン1" Theme="RedWine" GroupName="Group"> </dx:ASPxButton> <dx:ASPxButton ID="ASPxButton2" runat="server" Text="ボタン2" Theme="RedWine" Checked="True" GroupName="Group"> </dx:ASPxButton> <dx:ASPxButton ID="ASPxButton3" runat="server" Text="ボタン3" Theme="RedWine" GroupName="Group"> </dx:ASPxButton> </div> |
↓
「ボタン2」が選択状態で表示されます。
・「ボタン3」をクリックすると「ボタン3」が選択状態になります。
- 投稿タグ
- ASPxButton