A tab plugin used to add a toolbar before or after the tabbar of a tabpanel. Hope that it will be useful to you.
Latest Release
v1.1 (2012-02-15)
Screenshot
Attachment 31102
How to use
Code:Ext.create('Ext.tab.Panel', {
...
plugins: [{
ptype : 'itstabtool',
position: 'before',
items : [{
xtype: 'button',
iconCls: 'icon-timer'
},{
xtype: 'button',
iconCls: 'icon-reload'
}]
}],
...
});
Plugin configSource code
- {String} position The position of toolbar in relation to the tabbar. It can be "before" or "after". Default to "after".
- {Object/Object[]} items A single item, or an array of child Components to be added to this toolbar
Attachment 31711
Changelog for 1.1
- Fix the bug of appearing border around tabbar when resizing plain tabpanel

