Extjs4 在extjs中如何存储所选单选按钮选项

Extjs4 在extjs中如何存储所选单选按钮选项,extjs4,radio-group,Extjs4,Radio Group,我在extjs+Yii中工作。在extjs中,我正在创建包含20个问题的多项选择题。这些问题我是从Yii框架中检索到的。所以在extjs中,我的代码是= 看法= 问题.js Ext.define('Balaee.view.question.Question', { extend:'Ext.form.Panel', requires:[ 'Balaee.view.question.QuestionView'

我在extjs+Yii中工作。在extjs中,我正在创建包含20个问题的多项选择题。这些问题我是从Yii框架中检索到的。所以在extjs中,我的代码是= 看法= 问题.js

  Ext.define('Balaee.view.question.Question',   
     {
    extend:'Ext.form.Panel',
    requires:[
              'Balaee.view.question.QuestionView'
              ],
    id:'QuestionId',
    alias:'widget.question',
    title:'Question',
    height:180,
    items:[
        {
            xtype:'questionView',
        },

    ],//end of items square
    buttons:[
          {
              xtype:'button',
              fieldLabel:'Vote',
              name:'vote',
              formBind:true,
              text:'submit',
              action:'voteAction',
          }
    ]
         });
QuestionView.js

         Ext.define('Balaee.view.question.QuestionView',
             {
    extend:'Ext.view.View',
    id:'QuestionViewId',
    alias:'widget.questionView',
    store:'Question',
    config:
    {
        tpl:'<tpl for=".">'+
            '<div id="main">'+
            '</br>'+
            '<b>Question :-</b> {question}</br>'+
            //'<p>-------------------------------------------</p>'+

            '<tpl for="options">'+     // interrogate the kids property                  within the data
                '<p>&nbsp&nbsp<input type="radio" name="opt" >&nbsp{option} </p>'+
            '</tpl></p>'+

            '</div>'+
            '</tpl>',
        itemSelector:'div.main',    
    }
})


所以我有一个视图,它将问题及其选项显示为单选按钮。我展示了20个问题。最后它有一个提交按钮。点击提交按钮,我想显示结果。为了计算结果,我需要将用户选择的所有问题的选项存储在extjs的存储中,以便计算结果。那么,如何在extjs中存储所有选中的问题选项?

您是否在询问如何将表单的单选按钮值放入特设的Ext数据存储?

Thanx sir以供回答……实际上,我想将所有20个选中的问题单选按钮选项保存到存储中?