Sencha Touch中工具栏的多个按钮

时间:2012-01-19 09:22:48

标签: extjs toolbar

我需要让用户熟悉工具栏包含滚动条,工具栏中还有一些按钮。 该问题的任何示例代码。

提前感谢...

1 个答案:

答案 0 :(得分:1)

您可以尝试这样的事情(在Sencha Touch 2中):

var toolbar = Ext.create('Ext.Panel', {
     id: 'meetingList',
     flex: 1,
     scrollable: {direction: 'horizontal', indicators: false},
     defaults: {width: 200},
     items: [{
        xtype: 'button',
        text: 'Button1'
     },{
        xtype: 'button',
        text: 'Button2'
     },
     ....
    ]
});