Search code examples
extjsextjs4markup

ExtJS - center items in button group


I'm not sure how to go about this, buttonAlign: 'center' nor pack: 'center' are working. Fiddle: http://jsfiddle.net/3Ytp9/


Solution

  • Use the layout property of buttongroup:

        layout: {
            type: 'vbox',
            align: 'center'
        }
    

    See forked fiddle: https://fiddle.sencha.com/#fiddle/1cm