I have a statusbar where I want to set a button at the very left side of it. I can place it left using margin but it does not set completely at left side. But I need to do it. Can anyone please help me on this ?! Here is my code below :
me.tbar = Ext.create('Ext.ux.StatusBar', {
id: 'showgridtbar',
tooltip: 'Print Payment Details',
topBorder:false,
items: [
{xtype: 'button', iconCls: 'printp', margin: '0 0 0 -90', tooltip: 'Print Payment Details'}
],
}),