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

Rad Progress Bar is not closing inside ASp.net Update Panel

3 Answers 166 Views
ProgressArea
This is a migrated thread and some comments may be shown as answers.
John Sathish
Top achievements
Rank 1
John Sathish asked on 04 Jul 2013, 10:22 AM
Hi,
i am new to telerik controls.i used RAD Progress Area control in my project.if i use it with out update panel,it works as expected.when i place it with in update panel the progress area is not closing even after the process is over.i add RadProgressContext.OperationComplete = true;.
but no luck.how to do this.
Thanks.

3 Answers, 1 is accepted

Sort by
0
Shinu
Top achievements
Rank 2
answered on 04 Jul 2013, 10:58 AM
Hi John,

Please try the following code which uses RadAjaxManager instead of RadAjaxPanel or UpdatePanel.

ASPX:
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
    <ClientEvents OnRequestStart="startProgress" OnResponseEnd="hideProgress" />
    <AjaxSettings>
        <telerik:AjaxSetting AjaxControlID="SubmitButton">
            <UpdatedControls>
                <telerik:AjaxUpdatedControl ControlID="Label1" />
            </UpdatedControls>
        </telerik:AjaxSetting>
    </AjaxSettings>
</telerik:RadAjaxManager>

JavaScript:
<script type="text/javascript">
    function startProgress() {
        getRadProgressManager().startProgressPolling();
    }
    function hideProgress() {
        var area = $find('<%=RadProgressArea1.ClientID%>');
        area.cancelClicked = true;
    }
</script>

Thanks,
Shinu.
0
John Sathish
Top achievements
Rank 1
answered on 04 Jul 2013, 12:31 PM
hi Shinu,
Thanks for the idea. but i dont know how to implement RadAjaxManager instead of update panel.in update panel i can place all the controls inside it.but in RadAjaxManager how?.can you give me any examples to proceed further.
Thanks.
0
Shinu
Top achievements
Rank 2
answered on 05 Jul 2013, 07:44 AM
Hi John,

Please have a look at this demo to understand the usage of RadAjaxManager.

Thanks,
Shinu.
Tags
ProgressArea
Asked by
John Sathish
Top achievements
Rank 1
Answers by
Shinu
Top achievements
Rank 2
John Sathish
Top achievements
Rank 1
Share this question
or