orpqK
orpqK

Reputation: 2785

Ext js aligning the text field input box

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:

enter image description here

Now I want it to look like:

enter image description here

How can i achieve this?

Upvotes: 0

Views: 109

Answers (1)

cgatian
cgatian

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',

ExJS Documentation

Upvotes: 1

Related Questions