GitHub User: maxgronlund
Site: max@synthmax.dk
I forgot this little monkey patch to get true the validation
Use file_field_tag instead of file_field
<%#= f.file_field :image, multiple: true, name: "painting[image]" %> <%= file_field_tag(:image, multiple: true, name: "painting[image]") %>
SUCESS!! jquey-file-upload is not fully compatible with jquery 1.9.1 adding the jquery-migrate-1.1.1 plugin did the trick
Strange. I updated rails to 3.2.13 and it broke again, pulling it back to 3.2.8 and nothing could bring it alive again
I downloaded the example and ran it without any luck, seems like something is broken. Tried with Chrome and Safari.
When dropping files, nothing happens, when adding files from the dialog, nothing happens. Can someone confirm or am I missing something.
Yes ++ I need it all the time when a customer has a huge amount of legacy date in XLS format they want to move online
I had a problem with twitter-boot-strap and jcrop
The fix was to add the following to the css file
img { max-width: none;
}
.preview{ display:block; overflow:hidden; }
I forgot this little monkey patch to get true the validation
Use file_field_tag instead of file_field
<%#= f.file_field :image, multiple: true, name: "painting[image]" %>
<%= file_field_tag(:image, multiple: true, name: "painting[image]") %>
SUCESS!!
jquey-file-upload is not fully compatible with jquery 1.9.1
adding the jquery-migrate-1.1.1 plugin did the trick
Strange. I updated rails to 3.2.13 and it broke again, pulling it back to 3.2.8 and nothing could bring it alive again
I downloaded the example and ran it without any luck, seems like something is broken.
Tried with Chrome and Safari.
When dropping files, nothing happens, when adding files from the dialog, nothing happens.
Can someone confirm or am I missing something.
Yes ++
I need it all the time when a customer has a huge amount of legacy date in XLS format they want to move online
I had a problem with twitter-boot-strap and jcrop
The fix was to add the following to the css file
img {
max-width: none;
}
.preview{
display:block;
overflow:hidden;
}