当此列表显示在面板内时,我在加载我的嵌套列表数据时遇到问题。这是我的代码:
var titleBar = Ext.create("Ext.TitleBar", {
id: 'mainNavigationBar',
xtype : 'titlebar',
layout: 'hbox',
docked: 'top',
title : 'cSenchaTitleBar',
items:[
{
xtype:"button",
text:"Menu",
align:"left",
listeners:{
tap: function(){
nestedListxx.showBy(this);
}
}
},
]
});
var nestedList =
Ext.create('Ext.NestedList', {
displayField: 'text',
title:"cSenchaMenu",
store: "oNavStore",
id: 'mainNestedList',
xtype : 'nestedlist',
width:250,
useTitleAsBackText: false,
});
var nestedListxx = Ext.create("Ext.Panel", {
width:260,
items:nestedList
});
问题如下:假设我更改
nestedListxx.showBy(this);
为nestedList.showBy(this);
It works like a charm,只有嵌套列表周围没有光滑的黑色边框。但是如果我把它改回来,它确实会显示带有漂亮边框但没有任何数据的嵌套列表。
我确定我忘了设置一些关键配置,唯一的问题是:哪些