Ext.application({
name: 'Toolbar overflow example',
launch: function() {
var addedItems = [];
Ext.create('Ext.toolbar.Toolbar', {
renderTo: document.body,
id: 'toolbarId',
width: 500,
overflowHandler: 'menu',
items: [{
text: 'link button 1',
href: 'www.google.com',
width:100,
}, {
text: ' button 1',
width:100,
}, {
text: ' button 2'
}, {
text: 'button 3 '
}, {
text: 'button 4'
}, {
text: 'link button 1',
href: 'www.yahoo.com',//this link is opened in same window
}]
});
}
});
答案 0 :(得分:1)