Search code examples
sencha-touchsencha-touch-2sencha-touch-theming

customizing sencha touch toolbar


I want to create a custom toolbar using sencha touch. Using Ext.Toolbar, i am able to create a decent screen titlebar. But my requirement is to place my company brand image logo in the center of the title bar not the simple text as provided by the code below.

{
   xtype : 'toolbar',
   docked: 'top',
   title: 'My Toolbar'
}

can anyone help me how to do this ?


Solution

  • Try this

    {
        xtype: 'toolbar',
        docked: 'top',
        layout: {
            type: 'vbox',
            align: 'center',
            pack: 'center'
        },
        items: [
            {
                xtype: 'image',
                width:218,
                height:44,
                src:'http://cdn.sstatic.net/careers/gethired/img/careers2-ad-header-so-crop.png'
            }
        ]
    }