Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to the use the Blueimp Jquery File upload in my MVC4 Project. I have implemented everything and it is working. I used the MVC Example by MaxPavlov .

The upload works 100%, the only problem i have is that the thumbnail that is shown after the upload is not resized properly. I might only miss a script that i need to include.

Here is the scripts in the order that i include them on my page

@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/bootstrap")
@RenderSection("scripts", required: false)
<script src="~/Scripts/FileUpload/vendor/jquery.ui.widget.js" type="text/javascript"></script>

<script src="~/Scripts/FileUpload/tmpl.min.js"></script>
<script src="~/Scripts/FileUpload/load-image.min.js" type="text/javascript"></script>
<script src="~/Scripts/FileUpload/canvas-to-blob.min.js" type="text/javascript"></script>
<script src="http://blueimp.github.com/Bootstrap-Image-Gallery/js/bootstrap-image-gallery.min.js"></script>
<script src="~/Scripts/FileUpload/jquery.iframe-transport.js"></script>

<script src="~/Scripts/FileUpload/jquery.fileupload.js"></script>
<script src="~/Scripts/FileUpload/jquery.fileupload-fp.js" type="text/javascript"></script>
<script src="~/Scripts/FileUpload/jquery.fileupload-ui.js"></script>

<script src="~/Scripts/FileUpload/locale.js"></script>

The templates i also copied as they are in the MVC Example.

When i select the image from my computer when running the application, then the thumbnail is the correct size, then i click on "upload" the files are uploaded and when it is displayed afterwards, my image is the same size as the image on disk. I tried setting the .preview class in the css, this works in chrome/firefox but not in IE.

Note : Thanks to Blueimp and Maxpavlov for awesome work.

regards

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.