我不知道爲什麼,但ExtJS不顯示網格的內容,如果它在常規面板。ExtJS面板不會加載裏面的網格內容
當我添加網格tab.Panel然後一切都很好。
小提琴(多個文件): https://fiddle.sencha.com/?fiddle=19bi#fiddle/19bi
檢查主頁選項卡已併網。它不使用Ext.Panel。用戶選項卡的用途並沒有顯示網格。
文件在我的項目:
簡單商店(APP \店\ Personnel.js)
我的面板有1個項目。 當我改變Ext.tab.Panel到Ext.Panel那麼格的內容不會顯示(現代的\ src \圖\主\ Main.js)
Ext.define('MyApp.view.main.Main', {
extend: 'Ext.tab.Panel',
xtype: 'app-main',
...
items: [
{
title: 'Home',
iconCls: 'x-fa fa-home',
layout: 'fit',
// The following grid shares a store with the classic version's grid as well!
items: [{
xtype: 'mainlist'
}]
}
]
});
項目本身(MYAPP \現代的\ src \圖\ main \ List.js):
Ext.define('MyApp.view.main.List', {
extend: 'Ext.grid.Grid',
xtype: 'mainlist',
requires: [
'MyApp.store.Personnel'
],
title: 'Personnel',
store: {
type: 'personnel'
},
...
});
不確定Ext.Panel類名的有效性。你嘗試過Ext.panel.Panel嗎? – jacoviza
https://docs.sencha.com/extjs/6.0/6.0.2-modern/#!/api/Ext.Panel。這是一個現代主題。 – freento
請小提琴。 – Alexander