aayush_v20
aayush_v20

Reputation: 203

Text starts from right side of the textfield in extjs

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

Answers (1)

Gilsha
Gilsha

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

Related Questions