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?
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.
What am I missing?
<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?