Reputation: 357
Users do not like the scrolling tabs in the tabpanel. Is there any solution to order tabs in multiple rows?
var tp = Ext.create('Ext.tab.Panel', {
anchor: '100%',
border: 0,
items: [form, grid /*, ... */]
tabBar: {
// ???
}
});
Upvotes: 0
Views: 770
Reputation: 692
It's not possible in ExtJS4.
You can either write your own CSS for tabpanel or a custom extension, which will do the trick.
Upvotes: 1