我的问题是:我需要支持select local image files
,而且preview server side images
我正在使用插件FileUploadField
。它有一个从本地文件中选择的按钮,如何在它附近添加另一个按钮?
也许这是同一个问题:
如何找到按钮的父组件,并附加另一个子(按钮)?
多谢。
您可以在像这样呈现字段后添加自定义按钮
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);
}
}
});
});
例子: