Extjs将列项目右对齐

dgtucam1  于 2022-11-05  发布在  其他
关注(0)|答案(1)|浏览(180)

我有一个问题,在对齐一个项目的权利,或无论如何在列的末尾。如您所见的图片:

即使右边有空格,它也会将项目靠左对齐,覆盖部分文本(完整文本为“电池电量”)。我想将其靠近向下箭头对齐。我尝试使用align:'right',但没有成功。
我该怎么修复它?这是我的代码:

columns: {
        defaults: {
            flex: 1,
        },
        items: [{
             ....
        },{
            text: Strings.positionBatteryLevel,
            hidden:true,
            sortable: false,
            defaults:{
                margin:'-31 0 0 55'
            },
            items: [{
                xtype: 'numberfield',
                id: 'batteryFilter',
                align:'right',
                listeners: {
                     change (e,newValue, oldValue, eOpts ) {
                        filterGridAttributeType(newValue,'batteryLevel');
                    }
                }
            }],
       },{
            ...
jum4pzuy

jum4pzuy1#

有一个列的配置来对齐内容:

columns: [{
        text: 'Battery Level',
        sortable: false,
==>     align: 'end'
   },{
        ...

相关问题