我需要让用户熟悉工具栏包含滚动条,工具栏中还有一些按钮。 该问题的任何示例代码。
提前感谢...
答案 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'
},
....
]
});