This is a migrated thread and some comments may be shown as answers.

Progress not showing

1 Answer 62 Views
Upload (Obsolete)
This is a migrated thread and some comments may be shown as answers.
toddhd
Top achievements
Rank 1
toddhd asked on 25 Aug 2010, 05:10 PM
I could use some help to understand what I am doing wrong. I want to display the upload progress as my files upload. I think I have things setup the same way as in the documentation, however no progress bar shows up?

<telerik:RadPageView ID="pageUpload" runat="server">
    <div style="border: solid 1px black; width: 100%;">
        <telerik:RadProgressManager ID="RadProgressManager1" runat="server" />
        <telerik:RadProgressArea ID="RadProgressArea1" runat="server" DisplayCancelButton="True"
            Skin="WebBlue" />
        <telerik:RadUpload ID="RadUpload1" runat="server" Style="margin: 5px;" AllowedFileExtensions=".doc,.pdf,.jpg,.jpeg,.gif,.png,.tif,.tiff"
            ControlObjectsVisibility="All" InitialFileInputsCount="1" MaxFileInputsCount="5"
            Skin="WebBlue" OnValidatingFile="RadUpload1_ValidatingFile" />
    </div>
</telerik:RadPageView>

I am not sure if the fact that I have this in a Tab is any issue?

Sometimes our controls need a RadAjaxManagerProxy to work correctly, so I tried adding this as well. When I add this code, the little spinner control shows up for a second, but no progress bar, and it also "breaks" the upload - that is, the files DOES NOT upload if I add this ProxyManager code.

<telerik:RadAjaxManagerProxy ID="RadProxy1" runat="server">
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="RadUpload1">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="RadProgressArea1" />
                <telerik:AjaxUpdatedControl ControlID="RadProgressManager1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManagerProxy>
<telerik:RadScriptBlock ID="RadScriptBlock1" runat="server">

What am I missing?

1 Answer, 1 is accepted

Sort by
0
toddhd
Top achievements
Rank 1
answered on 26 Aug 2010, 04:34 AM
Never mind, having scoured through some other posts, I finally noticed a comment that said the progress bar will not show up in localhost, which does indeed seem to be case... although now I'm having another, but I will open another thread for that.
Tags
Upload (Obsolete)
Asked by
toddhd
Top achievements
Rank 1
Answers by
toddhd
Top achievements
Rank 1
Share this question
or