Search code examples
extjsextjs6extjs6-classic

Align title in the center of the tab


With extjs 5, by default, the tab title is aligned to the center.

With extjs 6 I can not get the same result and the titleAlign config does not work.

I tried to solve with tabConfig that although it is not available in the extjs 6 documentation it still works.

Any idea how to solve it?

Fiddle: https://fiddle.sencha.com/#view/editor&fiddle/2oo3


Solution

  • You can use

    style: {
        'text-align': 'center'
    }
    

    in your tabConfig. Here's the FIDDLE