同じname
設定を使わずにExtJSのラジオボタンをグループ化しようとしています。これは可能ですか?これは私のコードです:異なる名前のExtJSラジオボタンをグループ化してデータベースに保存する
items:
[
{
xtype: 'radio',
name: 'is_self_employed',
boxLabel: 'Self Employed:'
},
{
xtype: 'radio',
name: 'is_voluntary',
boxLabel: 'Voluntary:'
},
{
xtype: 'radio',
name: 'is_ofw',
boxLabel: 'OFW:'
},
{
xtype: 'radio',
name: 'is_non_working_spouse',
boxLabel: 'Non Working Spouse:'
},
{
xtype: 'radio',
name: 'is_farmer_or_fisherman',
boxLabel: 'Farmer or Fisherman:'
}
]
名前が同じでなければなりません。 'inputValue'を使用して値を指定します。 –