Ext JS 3: получить данные из поля загрузки файла - PullRequest
0 голосов
/ 18 августа 2011

Я использую Ext.ux.FileUploadField в Ext JS 3.3.1. Мне нужно получить данные файла из формы. Кто-нибудь знает, возможно ли это без отправки формы? Я вижу имя файла, но не данные файла ...

Спасибо.

1 Ответ

1 голос
/ 08 марта 2013
// get a handle to the FileUploadField component (e.g. by ID)
var fp = Ext.getCmp('fileUploadField');

//add a handler to FileUploadField's fileselected event
fp.on('fileselected', this.onFileUploadFieldFileSelected, this);



// 'fileselected' event handler
onFileUploadFieldFileSelected : function(fp, fileName) {
    // get a handle to the selected file
    var selectedFile = fp.fileInput.dom.files[0];

    // read the contents of the file using FileReader and display content here
}
...