如何更改文本后面的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%'
}]
});
答案 0 :(得分:2)
{
xtype: "textarea",
name: "editor",
value: "",
fieldStyle: "background: #FFFF55 none repeat scroll 0 0 !important;"
}
让我知道你想要的东西