Have other radtextboxes on user control where I use RadCloudupload to upload images. I am using RadCloudUpload1_FileUploaded server side event to manipulate the images. All works well accept the other radtextboxes lose there values after image upload.
A simple example:
Note I Switched from using Radasyncupload control to RadCloudupload. I did not experience the same issue with radasyncupload.
Any help would be greatly appreciated.
A simple example:
<
script
type
=
"text/javascript"
>
function imagesUploaded(sender, args) {
$find("<%= RadAjaxPanel1.ClientID%>").ajaxRequest()
}
</
script
>
<
telerik:RadAjaxPanel
ID
=
"RadAjaxPanel1"
runat
=
"server"
Width
=
"100%"
>
<
telerik:RadTextBox
ID
=
"RadTextBoxReference"
runat
=
"server"
Skin
=
"MetroTouch"
Width
=
"100%"
MaxLength
=
"50"
>
</
telerik:RadTextBox
>
<
telerik:RadCloudUpload
ID
=
"RadCloudUpload1"
runat
=
"server"
MultipleFileSelection
=
"Automatic"
MaxFileSize
=
"4194304"
AllowedFileExtensions
=
"jpeg,jpg,gif,png,bmp"
ProviderType
=
"Azure"
Skin
=
"MetroTouch"
OnClientFilesUploaded
=
"imagesUploaded"
OnClientValidationFailed
=
"validationFailed"
>
</
telerik:RadCloudUpload
>
</
telerik:RadAjaxPanel
>
Note I Switched from using Radasyncupload control to RadCloudupload. I did not experience the same issue with radasyncupload.
Any help would be greatly appreciated.