I am working with uploadify v 3.2.1 (with vb.net). Everything is fine, except that the input file extension filter property doesn't work for me. I have my code like this:
$("[id$='fuArchivoNoticias']").uploadify({
fileTypeDesc: 'Archivos Excel...', //definir formatos
fileTypeExts: '*.xlsx; *.xls', // definir formatos de entrada
fileSizeLimit: '10MB',
queueSizeLimit: 1,
auto: false,
swf: '../Recursos/Js/uploadify/uploadify.swf',
uploader: 'Upload_Informaciones.ashx',
multi: false,
buttonText: 'Examinar...',
onSelect: function (obj, varCod, nameFile) {
$("input[id='hd_nombreArchivo']").val(obj.name);
},
onCancel: function (file) {
console.log("El archivo " + file.name + " fue cancelado.");
}
});
and it looks like this:
I follow the documentation on the page to the letter but there is no case.
Finally the code is correct and it works, what I hadn't done was try it in other browsers, in chrome version: 47.0.2526.106 m, it doesn't work and I really don't know why, but in firefox and IE it works correctly.