在extjs中如何存储选定的单选按钮选项

时间:2013-01-03 07:09:42

标签: extjs4 radio-group

我在extjs + Yii工作。在extjs中,我创建了20个问题的多项选择题。我正在从Yii框架中重新审视这些问题。所以在extjs中我的代码为= 查看= Question.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中存储选中的所有问题选项?

1 个答案:

答案 0 :(得分:0)

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