我想上傳一個文件只需點擊一個按鈕「上傳按鈕」,點擊後會打開文件選擇器,如果選擇了文件,則必須上傳文件。Extjs4只用一個按鈕上傳文件
視圖不應該顯示input[type=file]
或任何其他標籤,但只有一個按鈕。
我知道這很容易與jQuery或只是JavaScript,但因爲我相對較新的Extjs,我寫這裏尋找你的幫助。
以下是文檔中的示例文件上傳器。我怎樣才能定製,以滿足我的需要:
Ext.create('Ext.form.Panel', {
title: 'Upload a Photo',
width: 400,
bodyPadding: 10,
frame: true,
renderTo: Ext.getBody(),
items: [{
xtype: 'filefield',
name: 'photo',
fieldLabel: 'Photo',
labelWidth: 50,
msgTarget: 'side',
allowBlank: false,
anchor: '100%',
buttonText: 'Select Photo...'
}],
buttons: [{
text: 'Upload',
handler: function() {
var form = this.up('form').getForm();
if(form.isValid()){
form.submit({
url: 'photo-upload.php',
waitMsg: 'Uploading your photo...',
success: function(fp, o) {
Ext.Msg.alert('Success', 'Your photo "' + o.result.file + '" has been uploaded.');
}
});
}
}
}]
});
該視圖不應該顯示輸入[類型=文件]或任何其他標籤。我只想用一個按鈕就可以完成上傳操作。 – Jamol