0

我正在尝试在嵌套列表的工具栏上添加一个按钮(右对齐)。这是我的代码:

Ext.define('Test.view.NestedList', {
extend: 'Ext.Panel',

requires: ['Ext.dataview.NestedList'],

xtype: 'mynestedlist',

config: {
    modal: true,
    centered: true,
    layout:'fit',
    width:'80%',
    height:'80%',
    items: [{
        xtype: 'nestedlist',
        fullscreen: true,
        title: 'Groceries',
        displayField: 'text',
        store: 'MyTreeStore',
        initialize: function(){
                console.log("Add the button on the toolbar");
                this.getToolbar().add({xtype: 'spacer'});
                this.getToolbar().add({xtype: 'button', iconCls: 'compose', ui: 'plain', action: ''});                  
            }
    }]

}
});

该按钮不与工具栏的右侧对齐,而是出现在左侧。有没有人有想法做这个?

谢谢

4

1 回答 1

0

您可以做的一件事是尝试将 a 添加titlebar到您的嵌套列表中,然后对齐按钮right

于 2013-06-06T19:02:53.437 回答