将它放在Items EXT JS中时不显示Breadcrumb

时间:2015-05-14 09:45:54

标签: extjs breadcrumbs

当我使用时,我有关于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()

它没有被创建。我不知道怎么样!你能解释一下为什么吗?

1 个答案:

答案 0 :(得分:1)

首先尝试声明商店:

var myStore = new ABC.store.Files();

然后,在items

中使用它
items:[{
    xtype: 'breadcrumb',
    store: myStore,
    showIcons: true,
    selection: myStore.getRoot()
}],