1

私はextjsで働いています。私はビューを持っています-QbqnsResultmain.js

Ext.define('Balaee.view.qb.qbqns.QbqnsResultmain',  
        {
    extend:'Ext.form.Panel',
    requires:[
              'Balaee.view.qb.qbqns.QbqnsResult'
              ],
              id:'QbqnsResultmainId',
              alias:'widget.QbqnsResultmain',
              title:'Result',
              height:400,
              items:[
                     {
                         xtype:'QbqnsResult',

                     },
                     ],
                     buttons:[
                              {
                                  xtype:'button',
                                  fieldLabel:'review',
                                  action:'getreview',
                                  name:'review',
                                  formBind:true,
                                  text:'Review',

                              },
                              {
                                  xtype:'button',
                                  fieldLabel:'papers',
                                  action:'getpapers',
                                  name:'papers',
                                  formBind:true,
                                  text:'Get all papers',
                             },
                           ]});

およびQbqnsResult.js-

Ext.define('Balaee.view.qb.qbqns.QbqnsResult',
{
        extend:'Ext.view.View',
        id:'QbqnsResultId',
        alias:'widget.QbqnsResult',
        //store:'kp.PollStore',
        store:'qb.QbqnsStore',
        config:
        {
            tpl:'<tpl for="1">'+
                '<div id="main">'+
                '</br>'+
                //'<b>Question :-</b></br>'+
                '<h1 id="q">Total number of Questions are:-</h1>{TotalQuestions}</br>'+
                '<h1 id="q">Number of attempted Questions:-</h1> {Attempted}</br>'+
                '<h1 id="q">Number of correct answers:-</h1> {CorrectAnswers}</br>'+
                '<h1 id="q">Total score:-</h1> {Total}</br>'+
                '<h1 id="q">Score you got is:-</h1> {Score}</br>'+
                '<h1 id="q">percentage you got is:-</h1> {percentage}</br>'+

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

送信ボタンをクリックすると、上のビューを表示したいと思います。だから私はコントローラーでコードを書いていました-

check:function()
    {
    var resultStore=Ext.create('Balaee.store.qb.QbqnsStore');
            proxy=resultStore.getProxy();
            Ext.apply(proxy.api,{
            read:'index.php/QuestionBank/qbpaper/getResult',
            create:'index.php/QuestionBank/qbpaper/getResult'
            });

            Ext.apply(proxy.reader,{
                type:'json',
                //root:'polls',
                root:'questions'
            });

            Ext.apply(proxy.writer,{
                type:'json',
                //root:'polls',
                root:'data'
            });


        var getdata=this.getLocalvalue();
        console.log(getdata.data);
        Paperno=getdata.data.questionPaperNo;
        UserId=getdata.data.userId;

        var answers = '{"data":[';
        answers = answers + '{"paperNo":"'+Paperno+'","userId":"'+UserId+'"}';
        answers =answers+']}';
        console.log(answers);

        resultStore.load({
            params:{
                data: answers
            },
            callback: function(records,operation,success){
                console.log(records);
                console.log("Successfully data send");
            },
            scope:this
        });

        var temp= Ext.getCmp('qbqnsId');
        temp.removeAll();


        var worldChaptor3 =temp.add({xtype:'QbqnsResultmain',
                id:'QbqnsResultmainId',
                store:resultStore});

},

したがって、resultStoreをQbqnsResultmainビューにxtypeとして含めたQbqnsResultビューのtplにバインドしたいと思います。ただし、resultStoreはQbqnsresultmainビューにバインドされますが、xtypeによってアイテムとして含まれているQbqnsresultにはバインドされません。それで、ストアをそれにバインドする方法。誰かが私を導くことができますか

4

1 に答える 1

0

それを行う1つの方法は次のとおりです。

var worldChaptor3 =temp.add({xtype:'QbqnsResultmain',
            id:'QbqnsResultmainId',
            store:resultStore});

worldChaptor3.down('QbqnsResultmain > QbqnsResult').bindStore(resultStore);

しかし、あなたがあなたの中でそれをする方が良いQbqnsResultmainでしょう、私はafterrenderイベントでそれをします、そうすれば、作成時にストアを自動的にバインドできます.

于 2013-03-08T16:06:34.463 に答える