0

extjs のラジオ グループから選択した入力ラベル値を取得する方法を誰か教えてもらえますか? ラジオグループをフォームに配置しました。onChangemethod のコントローラーで選択した入力ラベル値を取得する必要があります

onChangeAspectsradio: function (radioField, newVal, oldVal, eOpts){         
      console.log("new value is"+newVal); //here am getting object only             
},

ありがとう

4

2 に答える 2

0
Ext.ComponentQuery.query('[name=test]')[0].getGroupValue();

{
    xtype          : 'radiofield',
    name           : 'test',
    inputValue     : '30',
    hideEmptyLabel : false,
    boxLabel       : 'testBox'
}

これを試してみてください。ラジオの設定inputValueプロパティを覚えておいてください

于 2013-05-27T12:41:52.697 に答える