|
Search
You searched for the word(s): progress bar
Showing page 7 of 30 (299 total posts)
< 1 second(s)
-
UploaderBase.ProgressTextTemplate Property
Gets or sets the progress text template.
Default:
''Uploading %F%. %SEND% of %SIZE% at %KBPS%; %T% seconds remaining.
%P% = percent,
%T% = seconds remain,
%F% = filename.
%SEND% = uploaded size ,
%SIZE% = file size ,
%KBPS% means KB/s ,
%KBPS% = B/s \r\n ...
-
Antony,
for manual start upload case,
you can use this script to hide the queue :
<script type=''text/javascript''>
function CuteWebUI_AjaxUploader_OnProgressUI(items)
{
return false;
}
</script>
And you need do something in that function to let user ...
-
How do you change the progress bar color from the standard green? Also, is there any way to hide (not show) the bar that pops up mominarily after the upload is finished that has the name of the file and the green checkmark?
Thanks..
-
Hello,
The file upload progress information is good when it come to smaller file size or a small amount of files to be uploaded, when a file that is about 400MB needs to be uploaded or over 250 files(1 kb each) need to be uploaded the progress will be shown for the files as done but the uploader page would not refresh except after a while.
is ...
-
thank you reply for customize the progress bar method, but I don't wan't to do it myself, my question is can I put the progress bar layer of your code to my customize layer, and then I can control the show position?
-
Ajax uploader progress bar doesn't work properly with Internet Explorer 8
After selecting a file, progress bar goes straight to a 100% and the remaining time shows 1 sec. The file is a larger enough file (about 2 M), so after it happens, the screen remains the same until the actual upload isn't finished (that takes in my case for 2 M file another ...
-
Dear steveyuan, It can set ProgressBarBackgroundImage property for AjaxUploder,Below is the test ...
-
Hi,
You can try this javascript function :
<script>
function CuteWebUI_AjaxUploader_OnProgress(enable,filename,begintime,uploadedsize,totalsize)
{
return ''Hi, this is my runtime progress text'';
}
</script>
you can calculate it , and return a custom string.
the return ...
-
Hi insk,
1. if you mean use it in the <iframe>, then it will work.
2. You can create a virtual directory under your site and save the upload file into this virtual directory. The virtual directory can point to any location or remote server, just ensure that your site has the write/read permission of the folder you ...
-
Hi Demon1, * Small image preview before start upload or after upload completed The example below shows you how to generate the preview image after upload ...
... 7 ...
|
|
|