PDA

View Full Version : No progress Bar for IE9 - Atttachment upload



rosegarden
June 14, 2012, 01:16 AM
There re no progress bar for IE9, when new seller is uploading a large attachment they have no idea whether it is uploading or not.

This is not a problem with firefox as there is progress bar showing it is uploading.

===============================

If that is not possible, can u let me know how i can change the bar to a animated loader like something below:

http://www.kidmoses.com/main/ckfinder/userfiles/ufs1/images/ajax-loader.gif

Viktor
June 22, 2012, 11:06 AM
Hello Desmond Lim,

You can create additional loading image yourself. Follow my instruction:

go to ftp: >> tempaltes >> your_template >> tpl >> blocks >> photo_manager.tpl

find line:


<span class="preview"></span><span class="start"></span>

and replace to:


<span class="preview"><div class="loader"></div></span><span class="start"></span>

then in this file find code:


{literal}
$(document).ready(function(){

and add after:



$('input.start').click(function(){
$('div#fileupload span.preview div.loader').show();
})

then open ftp: >> tempaltes >> your_template >> css >> style.css

and add code in end of document:

div#fileupload span.preview
{
position: relative;
}
div#fileupload span.preview div.loader
{
background: url('../img/img_photo_loader.gif') center no-repeat #ccc;
opacity: 0.6;
filter: alpha(opacity=60);
position: absolute;
height: 94px;
width: 124px;
z-index: 2;
display: none;
}

then take this image:


and upload in: ftp: >> tempaltes >> your_template >>img

rosegarden
June 24, 2012, 01:11 AM
thank you shall try it out

Viktor
June 25, 2012, 08:55 AM
After completion of the integration please answer about your progress. I want to know about the successful integration of the modification.