Reputation: 203
I wish that when a person starts typing in the textfield the text is populated from the right side. Think of it as right-justified. Is there a way to do this ?
Upvotes: 1
Views: 150
Reputation: 14591
Yes. Use fieldStyle
property.
Ext.create('Ext.form.Panel', {
width: 300,
bodyPadding: 10,
renderTo: Ext.getBody(),
items: [{
xtype: 'textfield',
name: 'name',
fieldStyle:'text-align:right;',
fieldLabel: 'Name',
allowBlank: false
}]
});
<script src="http://extjs-public.googlecode.com/svn/tags/extjs-4.2.1/include/ext-all.js"></script>
Upvotes: 1