Hello friends I have the following filefield:
{
xtype:'filefield',
buttonText: 'choose',
buttonOnly: true,
listeners: {
change: function(fb, v) {
// ...
}
}
}
and I want to get the selected file in a byte array
Please help me if you can.
source
share