3

我的问题是:我需要支持select local image files,而且preview server side images我正在使用插件FileUploadField。它有一个从本地文件中选择的按钮,如何在它附近添加另一个按钮?

也许这是同一个问题:

如何找到按钮的父组件,并附加另一个子(按钮)?

多谢。

4

1 回答 1

0

您可以在像这样呈现字段后添加自定义按钮

Ext.onReady(function(){
    var fp = new Ext.ux.form.FileUploadField({
        renderTo : Ext.getBody(),
        emptyText: 'Select an image',
        listeners : {
            afterrender : function(fupload) {
                this.customButton = new Ext.Button({
                    renderTo : Ext.getBody(),
                    cls: 'x-form-file-btn',
                    text : 'some button'
                });
                this.customButton.el.insertAfter(fupload.fileInput);
            }
        }
    });
});

例子:

JSFiddle 链接

于 2013-04-11T18:18:33.900 回答