|
Search
You searched for the word(s):
Showing page 21 of 231 (2,301 total posts)
< 1 second(s)
-
Hi,
We tested this code, and found IE remove the type='button' automatically:
function testit()
{
var editor=document.getElementById(''<%=Editor1.ClientID%>'');
editor.GetDocument().body.innerHTML=''<button type='button'>hello</button>'';
alert(editor.GetDocument().body.innerHTML);
}
I ...
-
Hi,
UploadAttachments will persist a list of the uploaded files.
If you want to remove it, try use uploadAttachments1.DeleteAllAttachments() at the PreRender event.
Regards,
Terry
-
Hi,
Can you arrange your code an post the full source code ?
I think the possible reason is you bind the datagrid again.
Which will force the uploadattachment reset.
Regards,
Terry
-
Hi,
When you use Silverlight mode, you need implement the AppendData method correctly.
Because Silverlight will split the file into small pieces , and call Save once, and then call AppendData many times.
Regards,
Terry
-
Hi,
that error means the cookie is missing for an unknown reason. maybe because timeout.
at what progress did you get this error message ?
0%, or 100% ?
Regards,
Terry
-
Hi,
That is a bug.
Please download the last version and try again.
Regards,
Terry
-
Hi all,
We have confirmed a Firefox new BUG ,
If you put the uploader under the <BODY> directly , the Flash/Silverlight will stop works !!
SO , Do not use such code for testing : <BODY> uploader... </BODY>
Try add a DIV : <BODY><DIV> uploader... ...
-
Yes.
We recently have some customers report such issue,
both for Flash mode and Silverlight mode.
Because Firefox have such a bug,
If the addon is under <body> directly ,
Firefox will reload the addon for a unknown reason.
Regards,
Terry
-
Hi,
What error do you get when testing the asp.net file upload control ?
How about your configuration for the trust level ?
<trust level=''Full'' />
If you use this , uploader module will help you to skip the execution timeout issue for uploader requests.
on our server , we do not set sepcial ...
-
Hi,
You need attach the FileUploaded event , use tag code <CuteWebUI:Uploader FileUploaded=''....'' /> , or in the grid Item Init event.
And then , in the Uploader_FileUploaded(object sender,..) event, you can get the uploader by this way :
Uploader uploader=(Uploader)sender;
And then get the grid ...
... 21 ...
|
|
|