Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
262
igUpload - no file size stats or progress bar && double calling the Handler
posted

i have two problems.

First, progress bar doesnt work, file size info is always zero, and progress detail footer is always 0/0kb. However the files get uploaded just fine. i have looked at every single jquery igupload example you have and recreated all of them to successfully upload to my UploadHandler, but never get the progress info. (The handler sends the upload to my webservice and is not a local upload). 

Second, My upload handler gets called twice and thus uploads the file twice. I have autoupload =false, and use multi upload. as soon as i select a file, the handler gets called with the file, then gets called again when i clik upload. (ive had progressurl populated and empty and get same results)

please let me know what code of mine i can provide to help trouble shoot. i have included my web config, and the upload control. all the client side jquery functions are exact replicas of your examples.

 

<system.webServer>

    <handlers>

      <add name="IGUploadStatusHandler" path="~/Handler/IGUploadStatusHandler.ashx"

           verb="*" type=" Infragistics.Web.UI.EditorControls.UploadStatusHandler"

           preCondition="integratedMode" />

    </handlers>

  </system.webServer>

 

 <ig:WebUpload ID="WebUpload1" runat="server" Width="100%" Mode="Multiple" MaxSimultaneousFilesUploads="2"

                    UploadUrl="Handlers/IGUploadStatusHandler.ashx" ProgressUrl="Handlers/IGUploadStatusHandler.ashx">

                    <ClientEvents OnError="onError" FileSelected="fileSelected" CancelAllClicked="cancelAllClicked"

                        FileUploadAborted="fileUploadAborted" FileUploaded="fileUploaded" FileUploading="fileUploading" />

                </ig:WebUpload>

Parents
No Data
Reply
  • 19693
    posted

    Hello,

    Thank you for posting in our forums

    I see that you are using IIS7 for deploying the application

    http://help.infragistics.com/NetAdvantage/ASPNET/2011.2?page=WebUpload_Overview.html

    In my deveplopment environment I wasn't able to reproduce the behaviors(with the progress bar and the handler)

    Here is the markup that I am using:

    <head runat="server">

        <title></title>

        <script src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.4.4.js" type="text/javascript"></script>

        <script src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.14/jquery-ui.js" type="text/javascript"></script>

        <script src="http://ajax.aspnetcdn.com/ajax/jquery.templates/beta1/jquery.tmpl.js"

            type="text/javascript"></script>

     

        <script src="ig_ui/js/min/ig.ui.upload.min.js" type="text/javascript"></script>

        <script src="ig_ui/js/ig.ui.js" type="text/javascript"></script>

        <link id="link1" href="ig_ui/themes/ig/jquery.ui.custom.min.css" rel="Stylesheet"

            type="text/css" />

        <link id="link2" href="ig_ui/themes/base/ig.ui.min.css" rel="Stylesheet" type="text/css" />

        <script type="text/javascript" id="igClientScript1">

    <!--

            function WebUpload1_FileUploading(eventArgs, infoObject) {

                //Add code to handle your event here.

                alert('Ready?');

            }

    // -->

        </script>

    </head>

    <body>

        <form id="form1" runat="server">

        <div>

            <ig:WebScriptManager ID="WebScriptManager1" runat="server">

            </ig:WebScriptManager>

            <ig:WebUpload ID="WebUpload1" runat="server" AutoStartUpload="true" Mode="Multiple"

                MaxSimultaneousFilesUploads="2" ProgressUrl="~/IGUploadStatusHandler.ashx">

                <ClientEvents FileUploading="WebUpload1_FileUploading" />

            </ig:WebUpload>

        </div>

        </form>

    </body>

     

    Can you please modify it in order to reproduce the issue or provide us with an isolated sample replicating the behavior?

     

    Hope hearing from you.

Children