DevExpress でのチェックボックスリスト(ASPxCheckBoxList)の選択文字色変更(JavaScript)のサンプルです。
現状の画面デザインはこのようになっています。
<チェックボックスリストの選択文字色変更(JavaScript)>
・「ASPxCheckBoxList」の「SelectedIndexChanged」イベントに対して「SelectChange(s,e);」の設定します。
※「SelectChange」はローカルメソッド名
・選択情報を取得し、文字色を変更設定します。
※「dxichTextCellSys」は「ASPxCheckBoxList」のクラス名
【サンプルプログラム】
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
<script type="text/javascript"> var myBeforeItems = []; var myTargetItem = null; var mySelDate = null; function SelectChange(s, e) { if (myBeforeItems.length != 0) { //文字色を元に戻す for (ii = 0; ii < myBeforeItems.length; ii++) { mySelDate = myBeforeItems[ii]; mySelDate.style.color = "blue"; } } //選択アイテム取得 for (ii = 0; ii < s.GetSelectedIndices().length; ii++) { myTargetItem = s.GetMainElement().getElementsByClassName("dxichTextCellSys")[s.GetSelectedIndices()[ii]]; //文字色設定 myTargetItem.style.color = "red"; myBeforeItems.push(myTargetItem); } } </script> <form id="form1" runat="server"> <div> <dx:ASPxCheckBoxList ID="ASPxCheckBoxList1" runat="server" ValueType="System.Int32" EnableTheming="True" Font-Size="XX-Large" SelectedIndex="4" Theme="RedWine" ForeColor="Blue" Height="300px" ItemSpacing="25px" RepeatColumns="2" RepeatDirection="Horizontal" TextSpacing="20px" Width="350px" Caption="地方選択" > <ClientSideEvents SelectedIndexChanged="function(s, e) { SelectChange(s,e); }" /> <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" /> <dx:ListEditItem Text="中国" Value="6" /> <dx:ListEditItem Text="四国" Value="7" /> <dx:ListEditItem Text="九州" Value="8" /> <dx:ListEditItem Text="沖縄" Value="9" /> </Items> <CaptionSettings ShowColon="False" VerticalAlign="Middle" /> <FocusedStyle ForeColor="Red"> </FocusedStyle> <CaptionStyle ForeColor="#BC768E" Font-Size="XX-Large"> </CaptionStyle> <Border BorderStyle="None" /> </dx:ASPxCheckBoxList> </div> </form> |
それでは、実行して動作確認を行います。
↓
・「近畿」を選択します。
↓
・「中国」ボタンを押下します。
無事にチェックボックスリスト(ASPxCheckBoxList)の選択文字色変更(JavaScript)が出来ました。
- 投稿タグ
- ASPxCheckBoxList