更改文本区域中文本后面的背景颜色

时间:2015-09-28 12:22:38

标签: javascript extjs

如何更改文本后面的textarea内的背景颜色。

Ext.create('Ext.form.FormPanel', {
    title      : 'Sample TextArea',
    width      : 400,
    bodyPadding: 10,
    renderTo   : Ext.getBody(),
    items: [{
        xtype     : 'textareafield',
        grow      : true,
        name      : 'message',
        fieldLabel: 'Message',
        anchor    : '100%'
    }]
});

1 个答案:

答案 0 :(得分:2)

{
 xtype: "textarea",
 name: "editor",
 value: "",
 fieldStyle: "background: #FFFF55 none repeat scroll 0 0 !important;"
}

让我知道你想要的东西