我在面板上添加了textareafield,默认情况下是白色作为背景。但是我想隐藏白色并赋予它淡蓝色,以便它与面板配合使用。正如您在图像上所看到的那样,textareafield的顶部(第一行)保持白色。有谁知道为什么,以及如何解决这个问题?
我生成textareafield的代码是:

        xtype: 'textareafield',
        readOnly: true,
        height: 150,
        fieldStyle: 'background-color: #DFE9F6',
        value: warning,
        id: 'textareaField'

最佳答案

仍然需要删除背景图片。请试试

xtype: 'textareafield',
readOnly: true,
height: 150,
fieldStyle: 'background-color: #DFE9F6; background-image: none;',
value: warning,
id: 'textareaField'

07-24 19:57