Eleanor
Eleanor

Reputation: 357

Extjs4 TabBar of Tabpanel with multiple rows?

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

Answers (1)

Nikolai Lopin
Nikolai Lopin

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

Related Questions