2013-03-07 73 views
0

我在ExtJs的GridPanel功能上遇到了一些奇怪的行爲。我已經包含了一個groupField配置選項,它不顯示,也不工作。也許你們可以給我一個想法,爲什麼?ExtJS GridPanel「顯示在組中」不顯示/不工作

createStore : function(itemPath) { 
         return new 
          CQ.Ext.data.GroupingStore({ 

           proxy : new CQ.Ext.data.HttpProxy(
              { 
               url : "/bin/test/private/folder/check.json", 
               method : "GET" 
              }), 
           //method: "GET", 
           reader: new CQ.Ext.data.JsonReader({ 
             root: 'variables', 
             fields: [ 
              {name: 'group', type: 'string'}, 
              {name: 'path', type: 'string'}, 
              {name: 'status', type: 'string'} 
             ] 
           }), 
           updateData : function() { 

            // request the data 
            this.load({ 
             params : {     
              path : itemPath   
             } 
            }); 
           }, 
           sortInfo: {field: 'path', direction:'ASC'}, 
           groupField: 'group', 
           groupOnSort: true, 
           autoLoad : true 
         }); 
        }, 

回答