我的问题不是按照extjs框架中的宽度自动包装工具栏。
示例:
Ext.create('Ext.toolbar.Toolbar',{ renderTo:document.body, 宽度:200, 项目:[{
text: 'Button'
}, {
xtype: 'splitbutton',
text: 'Split Button'
},
'->', {
xtype: 'textfield',
name: 'field1',
emptyText: 'enter search term'
},
'-',
'text 1', {
xtype: 'tbspacer'
},
'text 2', {
xtype: 'tbspacer',
width: '50%'
},
'text 3'
]
});
答案 0 :(得分:0)
也许您正在寻找overflowHandler
和scrollable
参数。
答案 1 :(得分:0)
您需要为此使用enableOverflow
配置。下面是一个示例。
xtype: 'toolbar',
dock: 'top',
enableOverflow: true