Reputation: 2785
I have a fiddle, in the header trigger menu, there is a text field box called Name:
https://fiddle.sencha.com/#fiddle/161n
I want this input box to move all the way to the left, right next to the text Name:
Now I want it to look like:
How can i achieve this?
Upvotes: 0
Views: 109
Reputation: 22994
Use the labelwidth property when configuring your myT2 textfield. By default all labels have 100px width.
xtype: 'textfield',
name: 'name',
fieldLabel: 'Name',
id: 'myT2',
labelWidth: '50px',
Upvotes: 1