討論區: 公開ディスカッション (Thread #28282)

ラジオボタンのイベント処理について (2010-12-27 12:13 by 匿名 #55001)

ラジオボタンのイベント時に渡す値について質問させていただきます。

radioGroupでradiomemberを設定してあります。
そこで、グループで設定してあるラジオボタンを押下時に押下したラジオボタンの値を
処理の方にパラメーターとして渡したいのですが、nullで渡されてしまいます。
ラジオボタンの値によって、DBから取得するテーブルを判断したいのですが、
選択されたラジオボタンの値は通常何が設定されているのでしょうか?

ご教示よろしくお願いいたします。

回覆 #55001×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登入

RE: ラジオボタンのイベント処理について (2011-01-04 13:53 by uchidahd #55098)

どのように値を取ろうとしてnullが渡されたのか、文章からだけではよくわかりません。

radioGroup から値を取得すると、選択された radioButton の name が取得できます。
選択された radioButton の name をラベルに表示させる例を以下に記述しますので、
参考にしてください。

----------------------------------------------------------------------
レイアウト定義XMLの例:

<?xml version="1.0" encoding="UTF-8"?>
<layoutDef>
<layout name="layout">
<radioGroup name="myRadioGroup">
<radioMember ref="myRadio1" />
<radioMember ref="myRadio2" />
<radioMember ref="myRadio3" />
</radioGroup>
<radio name="myRadio1" top="10" left="10" text="ラジオボタン1" />
<radio name="myRadio2" top="30" left="10" text="ラジオボタン2" checked="true" />
<radio name="myRadio3" top="50" left="10" text="ラジオボタン3" />
<label name="lblNew" top="100" left="17" text="ラベル"/>
</layout>
</layoutDef>

----------------------------------------------------------------------
イベント定義XMLの例:

<?xml version="1.0" encoding="UTF-8"?>
<eventDef>
<component id="myRadio1">
<event id="onclick" start="testEvent" type="local"/>
</component>
<component id="myRadio2">
<event id="onclick" start="testEvent" type="local"/>
</component>
<component id="myRadio1">
<event id="onclick" start="testEvent" type="local"/>
</component>
</eventDef>

----------------------------------------------------------------------
コールバック関数の例:

function testEvent(event){
var grp = event.layout.getWidget("myRadioGroup");
var lbl = event.layout.getWidget("lblNew");
lbl.setValue(grp.getValue());
}
回覆: #55001

回覆 #55098×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登入

RE: ラジオボタンのイベント処理について (2011-01-06 11:16 by 匿名 #55137)

ありがとうございました。

ご教示いただいた通り行いましたら、できました。

ありがとうございました。
回覆: #55001

回覆 #55137×

You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.) 登入