我正在使用ExtJS 3.4,我想在我的應用程序中使用fileupload。下面顯示了我的代碼和文件上傳字段屏幕截圖。顯示fileupload字段有一個問題,我無法解決這個錯誤。任何人都可以幫忙ExtJS文件上傳字段顯示不正確
var uploadFormPanel = new Ext.FormPanel({
fileUpload : true,
autoHeight : true,
height : 200,
bodyStyle : 'padding: 10px 10px 0 10px;',
labelWidth : 50,
defaults : {
anchor : '95%',
allowBlank : false,
msgTarget : 'side'
},
items: [
{
xtype : 'combo',
fields : ['id','name'],
name : 'fuelCompany',
store : comboStore,
valueField : 'id',
displayField : 'name',
submitValue : true,
typeAhead : true,
triggerAction : 'all',
selectOnFocus : true,
allowBlank : false,
mode : 'remote',
anchor : '95%'
},{
xtype : 'fileuploadfield',
id : 'form-file',
name : 'file',
buttonText : 'select file',
buttonCfg : {
iconCls : 'upload-icon'
}
}
]
});
'fileuploadfield'似乎不是ExtJS 3的內置組件,至少我在文檔中找不到它。它是你寫的擴展名嗎? –
我編輯了我使用的ExtJS版本。我使用這個:http://dev.sencha.com/deploy/ext-3.4.0/examples/form/file-upload.html – vtokmak