当我使用时,我有关于Breadcrumb的演示:
initComponent: function() {
var store = new ABC.store.Files();
this.width = 500;
this.tbar = [{
xtype: 'breadcrumb',
store: store,
showIcons: true,
selection: store.getRoot()
}];
this.callParent();
}
Breadscrumb
将正常创建。但是当我使用:
items:[{
xtype: 'breadcrumb',
store: 'ABC.store.Files',
showIcons: true,
selection: 'root'
}],
renderTo:Ext.getBody()
它没有被创建。我不知道怎么样!你能解释一下为什么吗?
答案 0 :(得分:1)
首先尝试声明商店:
var myStore = new ABC.store.Files();
然后,在items
items:[{
xtype: 'breadcrumb',
store: myStore,
showIcons: true,
selection: myStore.getRoot()
}],