Hi, i'm using the multifile plugin to handle multiple uploads.
The upload process works but i can't change the default values.
this is the code i'm using for the input field
- <input type="file" name="FILE_NOME" id="FILE_NOME" size="chars" class="multi" accept="pgp" />
and here's the javascript code:
- $(function(){
- $('#FILE_NOME').MultiFile({
- STRING: {
- remove: '<img src="/pinloader/img/delete_icon.gif" height="11" width="11" alt="x"/>'
- selected:'Selezionato: $file',
- denied:'File di tipo $ext non valido!'
- }
- });
- });
It looks like the plugin simply ignores the default overrides without giving any kind of feedback.
I'm using v.1.47 of the plugin and jquery 1.5.1
Any help would be really appreciated.
P.S. the same problem is reported
here (for an older version of the plugin) but without answers.