Extjs filefield按钮仅带有图像

时间:2013-05-01 00:08:03

标签: javascript extjs filefield

请帮帮我。我可以用图像修改浏览按钮吗?因此,如果用户clik on image,则会显示浏览对话框。我是Extjs的新手。我尝试使用iconCls,但它不起作用:/

please check this image

谢谢

1 个答案:

答案 0 :(得分:2)

使用buttonConfig配置选项。您可以在那里指定iconCls。这就是他们在this example

中的表现
{
    xtype: 'filefield',
    name: 'photo',
    fieldLabel: 'Photo',
    labelWidth: 50,
    msgTarget: 'side',
    allowBlank: false,
    anchor: '100%',
    buttonConfig: {
        text: 'Hello',
        iconCls: 'test-class'
    }
}