如何使用红色文本在Ext.FormPanel中创建宽度= 100%的按钮?

时间:2011-02-28 16:06:00

标签: javascript forms button extjs

我有一个带有按钮的表单,如下所示:

var simple_form_right = new Ext.FormPanel({
        frame:true,
        labelWidth: 90,
        labelAlign: 'right',
        title: 'Orderer Information',
        bodyStyle:'padding:5px 5px 0',
        width: 300,
        height: 600,
        autoScroll: true,
        itemCls: 'form_row',
        defaultType: 'displayfield',
        items: [{
                fieldLabel: 'Customer Type',
                name: 'customerType',
                allowBlank:false,
                value: 'Company'
            }, .... {
                fieldLabel: 'Item 21',
                name: 'item21',
                value: 'test'
            },
            new Ext.Button({
                text: "Cancel Order",
                style: 'width: 100%; color: red',
                handler: function() {
                    alert('pressed');
                }
            })
        ]
    });

该按钮有效,但正如样式信息尝试所示,我希望按钮延伸到表单并且红色文字

enter image description here

如何让按钮的宽度在表单中延伸并在按钮内部显示红色文字?

附录

Robby的解决方案100%工作:

...
}, {
    fieldLabel: 'Item 20',
    name: 'item20',
    value: 'test'
}, {
    fieldLabel: 'Item 21',
    name: 'item21',
    value: 'test'
}, {
    xtype: 'button',
    text: '<span style="color:red">Cancel Order</span>',
    anchor: '100%',
    handler: function() {
        alert('pressed');
    }
}

enter image description here

1 个答案:

答案 0 :(得分:5)

将按钮定义更改为。

{
    xtype: 'button',
    text: '<span style="color:red;">Cancel Order</span>',
    anchor: '100%'
    handler: function() { alert('pressed') };
}

要使锚属性起作用,您的按钮不能位于面板的“按钮”数组中。