Hi there,
I have a column layout with a width of 100%. I want to align the items inside to the right.
I tried pack: 'end' but this doesn't do anything. This works in EXTJS 6 but I'm on 4.2.2.
Any ideas?
Hi there,
I have a column layout with a width of 100%. I want to align the items inside to the right.
I tried pack: 'end' but this doesn't do anything. This works in EXTJS 6 but I'm on 4.2.2.
Any ideas?
Did you get it working ?
We are still using 4.2.3, so here a working code example.
( Check the pack property is on the parent container )
Code:{ xtype: 'form', height: 47, width: 157, bodyPadding: 10, title: '', layout: { type: 'hbox', align: 'stretch', pack: 'end' }, items: [ { xtype: 'button', height: 42, id: 'purchaseButton', itemId: 'purchaseButton', text: 'Purchase' } ] }
No never got it working. Yours work because it's a hbox layout. I think if you put it as column it won't work.
Thanks for the reply though.