単純なリストをパネルまたはコンテナに入れたいのですが、機能しません。titleBarは表示されますが、リストは表示されません。これはコードです。
(このコンテナはTabPanel内にあります)
Ext.define("PrimaProva.view.ClientList", {
    extend: "Ext.Container",
    xtype: 'clientlist',
    //fullscreen: true,
    config: {
        title    : 'Gsrid',
    iconCls: 'user',
        items: [
    {
        xtype: 'titlebar',
        docked: 'top',
        title: 'Clients List'
    },
    {
        xtype: 'list',
        store: 'Grid',
        itemTpl: '{text}',
    }
    ]
     },
});
ご覧のとおり、非常に簡単です…ストア「グリッド」は別のビューで機能するため、まったく問題ありません…。とにかくこれはコードです:
Ext.define('PrimaProva.store.Grid', {
    extend : 'Ext.data.Store',
   requires : [
        'PrimaProva.model.Grid'
    ],
config : {
    model : 'PrimaProva.model.Grid',
    data  : [
        { text : 'One',   amount : 1  },
        { text : 'Two',   amount : 2  },
        { text : 'Three', amount : 3  },
        { text : 'Four',  amount : 4  },
        { text : 'Five',  amount : 5  },
        { text : 'Six',   amount : 6  },
        { text : 'Seven', amount : 7  },
        { text : 'Eight', amount : 8  },
        { text : 'Nine',  amount : 9  },
        { text : 'Ten',   amount : 10 }
    ],
groupField: 'text', 
}
});