Hi,
I am facing a strange issue with asyncfileupload. I am using jquery accordion in my form. Say, I have div with id="formcontent" and I am having 4 div's inside. say, div1,div2,div3 and div 4. I am displaying one div at a time using accordion. I have 7 asyncfileuploads in div4. I have two in div1. If I place an asyncfileupload in div2, the uploads in div4 stopped working(uploads in div1 continues to work).And the upload I placed in div2 also not working. When I am clicking select file,it opens file location, I am selecting the file, after that no event happening.StartUpload function is not firing. No clue of what is happening.Because,if I place the upload which is in div2 to div4, all uploads starts working fine.
Please help me with a solution. Struggling with the same from the last week.
Additional Info: I am using ajax control tool kit version 3.0.30930.28736. I am working in a SharePoint 2010 application. So, I can't use higher versions.
Please see the mark up below.
```
<asp:AsyncFileUpload ID="asyncFuplSchedule" Width="400px" runat="server" OnClientUploadError="uploadError"
OnClientUploadStarted="StartUpload" OnClientUploadComplete="asyncFuplSchedule_UploadComplete" CompleteBackColor="Lime"
UploaderStyle="Modern" ThrobberID="trbSchedule" OnUploadedComplete="asyncFuplSchedule_UploadedComplete"
UploadingBackColor="#66CCFF" />
<asp:Label ID="trbSchedule" runat="server" Style="display: none">
<img src="/sites/obs/_layouts/images/indicator.gif" align="middle" alt="loading" />
</asp:Label>
```
I am facing a strange issue with asyncfileupload. I am using jquery accordion in my form. Say, I have div with id="formcontent" and I am having 4 div's inside. say, div1,div2,div3 and div 4. I am displaying one div at a time using accordion. I have 7 asyncfileuploads in div4. I have two in div1. If I place an asyncfileupload in div2, the uploads in div4 stopped working(uploads in div1 continues to work).And the upload I placed in div2 also not working. When I am clicking select file,it opens file location, I am selecting the file, after that no event happening.StartUpload function is not firing. No clue of what is happening.Because,if I place the upload which is in div2 to div4, all uploads starts working fine.
Please help me with a solution. Struggling with the same from the last week.
Additional Info: I am using ajax control tool kit version 3.0.30930.28736. I am working in a SharePoint 2010 application. So, I can't use higher versions.
Please see the mark up below.
```
<asp:AsyncFileUpload ID="asyncFuplSchedule" Width="400px" runat="server" OnClientUploadError="uploadError"
OnClientUploadStarted="StartUpload" OnClientUploadComplete="asyncFuplSchedule_UploadComplete" CompleteBackColor="Lime"
UploaderStyle="Modern" ThrobberID="trbSchedule" OnUploadedComplete="asyncFuplSchedule_UploadedComplete"
UploadingBackColor="#66CCFF" />
<asp:Label ID="trbSchedule" runat="server" Style="display: none">
<img src="/sites/obs/_layouts/images/indicator.gif" align="middle" alt="loading" />
</asp:Label>
```