如何在EXTJS文本字段中为空文本添加图像

use*_*808 1 extjs

球队.

有谁知道如何在extjs文本字段中添加图像

基本上我有文本字段,我默认显示空文本,除此之外我想放一个图像(图像应该在文本字段内.)有任何方法可以做到这一点.

Vla*_*lad 8

Ext 4.1

你的领域:

    {
        xtype: 'textfield',
        fieldLabel: 'Field with image',
        emptyText: 'placeholder text', // important, or image will not show
        name: 'name',
        emptyCls: 'empty-text-field'
    }
Run Code Online (Sandbox Code Playgroud)

你的css:

.empty-text-field {
    background-image:url(/images/cross.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
}
Run Code Online (Sandbox Code Playgroud)

如果要在所有空文本字段中显示图像,则只需添加此css:

.x-form-empty-field {
    background-image:url(/images/cross.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
}
Run Code Online (Sandbox Code Playgroud)

(x-form-empty-field是表单字段的默认emtptyCls)

不要忘记emptyText

截图

  • 我打算提出同样的建议,OP只需要知道你不会再得到那个波浪线了. (2认同)