Hello,
I am trying to use a radupload with radprogressmanager and radprogressarea in a radtabstrip control which have also radajaxpanel. I read and tried lots of topic in this subject but I couldn't find any solution to my problems. Let me explain.
Yesterday, my uploads were working, but I wasn't able to see progressarea. But today radupload have nor uploadedfiles neither invalidfiles. Yesterday my code was in an other radajaxpanel which have some codes that I copied from other posts on ClientEvents-OnRequestStart event. And today my codes are below.
And I just found another javascript function that I use yesterday. I hope it will help you to understand what is wrong with my code. Codes are below:
I guess I am a little confused after reading so much post and everytime found another possible errors.
I would appreciate it a lot, if you could help me to work that uploads.
Kind regards,
AytaƧ Utku TOPAL
I am trying to use a radupload with radprogressmanager and radprogressarea in a radtabstrip control which have also radajaxpanel. I read and tried lots of topic in this subject but I couldn't find any solution to my problems. Let me explain.
Yesterday, my uploads were working, but I wasn't able to see progressarea. But today radupload have nor uploadedfiles neither invalidfiles. Yesterday my code was in an other radajaxpanel which have some codes that I copied from other posts on ClientEvents-OnRequestStart event. And today my codes are below.
<asp:Panel runat="server" ID="pnlAttachments" Visible="false"> |
<telerik:RadUpload ID="RadUpload1" runat="server" InitialFileInputsCount="1" MaxFileInputsCount="5" |
AllowedFileExtensions=".pdf,.xls,.doc,.docx,.xlsx" ControlObjectsVisibility="RemoveButtons,AddButton"> |
</telerik:RadUpload> |
<telerik:RadProgressArea ID="progressArea1" runat="server" /> |
<asp:Button ID="btnAttachmentCancel" runat="server" Text="Cancel" Style="margin-top: 6px" /> |
<asp:Button ID="buttonSubmit" runat="server" Text="Submit" Style="margin-top: 6px" /> |
</asp:Panel> |
function conditionalPostback(sender, args) |
{ |
if (args.EventTarget == "<%= ButtonSubmit.UniqueID %>") |
{ |
args.EnableAjax = false; |
} |
} |
I guess I am a little confused after reading so much post and everytime found another possible errors.
I would appreciate it a lot, if you could help me to work that uploads.
Kind regards,
AytaƧ Utku TOPAL