文本从 extjs 中文本字段的右侧开始

Text starts from right side of the textfield in extjs

我希望当一个人开始在文本字段中输入时,文本从右侧填充。将其视为右对齐。有办法吗?

是的。使用 fieldStyle 属性。

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>