|
Search
You searched for the word(s):
Showing page 18 of 231 (2,301 total posts)
< 1 second(s)
-
Hi,
Please try this :
function CuteWebUI_AjaxUploader_OnTaskComplete(task)
{
var uploader=this;
alert(uploader.id);
}
Regards,
Terry
-
Hi,
The global handler is called by the default instance handler.
If you replace the default instance handler, the global handler will not be called.
So you need do that in the instance handler :
uploader.handlepostback=function()
{
var res;
...
-
Timo,
OK. for multiple files upload , you need split the string into guid array , and process one by one .
Do you mean the MaxFilesLimit property ? I am not sure what you mean.
Regards,
Terry
-
Hi,
You need customize the queue ui at first : http://ajaxuploader.com/document/scr/create-custom-queue-table.htm
and you also need use the OnProgress event to get the progress information , by declare this function
function ...
-
Chris,
Maybe you need download the last version.
And please take care the name , it's 'L' , not 'l'
Regards,
Terry
-
Hi,
Silverlight can read small chunk of data from the file
But Flash only support read all file data into memory.
So if use Flash mode to open a 500MB file , 500MB data will read to memory , and the browser will hang for a while.
Now we do not provide timeout setting . the auto logic is ,
If the file is ...
-
Hi,
We recently have another customer who use jQuery to show the dialog,
And we found another thing,
We let he open the dialog after uploader initialized.
like this :
<script>
function CuteWebUI_AjaxUploader_OnInitialize()
{
...
-
Hi,
Can you test this url again ?
http://ajaxuploader.com/demo/Large-File-Upload.aspx?UploaderDebug=1
In the top-right , there's a trace box , you can get more informat from it.
Regards,
Terry
-
Hi,
We are not able to provide the path of the file, because Flash/Silverlight and some browser's <input> do not provide that information.
For client data, you can check this demo :
<%@ Page Language=''C#'' %>
<%@ Import Namespace=''CuteWebUI'' %>
<%@ Register TagPrefix=''CuteWebUI'' ...
-
Hi,
The newest version which was released yestoday now support this feature.
Please download it and try again.
For silverlight it will try to resume the uploading automatically.
For Flash mode , you need set the FlashLoadMode to true , but this is not good for large files.
So, for ...
... 18 ...
|
|
|