如何在 ExtJS 中重置文件字段输入?我在尝试:
//this - point on Ext.panel.Form
var form = this.getForm();
form.reset();
var filefield = this.getForm().getFields().get(0);
filefield.reset();
filefield.setValue('');
filefield.value = '';
但这些方法中没有一种是行不通的。谢谢你的帮助!
如何在 ExtJS 中重置文件字段输入?我在尝试:
//this - point on Ext.panel.Form
var form = this.getForm();
form.reset();
var filefield = this.getForm().getFields().get(0);
filefield.reset();
filefield.setValue('');
filefield.value = '';
但这些方法中没有一种是行不通的。谢谢你的帮助!
使用下面的代码会帮助你
function clearFileUpload(id){
// get the file upload element
fileField = document.getElementById(id);
// get the file upload parent element
parentNod = fileField.parentNode;
// create new element
tmpForm = document.createElement("form");
parentNod.replaceChild(tmpForm,fileField);
tmpForm.appendChild(fileField);
tmpForm.reset();
parentNod.replaceChild(fileField,tmpForm);
}
老帖子,但我也遇到了这个问题,我找到了一个更干净的解决方案。
首先确保文件字段设置了allowBlank:true。
然后你可以这样调用 setRawValue 方法:
filefield.setRawValue("");
您可能正在寻找的最简单的方法是:
filefield.fileInputEl.dom.value = '';
基于此答案:HTML 输入文件选择事件在选择同一文件时未触发
在 Ext.ux.form.FileUploadField 组件的 bindListeners 函数下的 change 事件中添加以下代码。
var that = this;
setTimeout(function() {
that.fileInput.dom.value = null;
that.setValue(that.fileInput.dom.value);
}, 100);
bindListeners: function(){
this.fileInput.on({
scope: this,
mouseenter: function() {
this.button.addClass(['x-btn-over','x-btn-focus'])
},
mouseleave: function(){
this.button.removeClass(['x-btn-over','x-btn-focus','x-btn-click'])
},
mousedown: function(){
this.button.addClass('x-btn-click')
},
mouseup: function(){
this.button.removeClass(['x-btn-over','x-btn-focus','x-btn-click'])
},
change: function(){
var v = this.fileInput.dom.value;
this.setValue(v);
this.fireEvent('fileselected', this, v);
var that = this;
setTimeout(function() {
that.fileInput.dom.value = null;
that.setValue(that.fileInput.dom.value);
}, 100);
}
});
},