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

RadAjaxLoading Panel not working

1 Answer 46 Views
AjaxLoadingPanel
This is a migrated thread and some comments may be shown as answers.
Vitaly
Top achievements
Rank 1
Iron
Iron
Vitaly asked on 05 May 2017, 06:03 PM

Hi,

I added  a new javascript confirm window dialog box:

<script type="text/javascript">
function OnClientClick() {
var txttext1 = document.getElementById('<%=txtComments.ClientID%>');
if (txttext1.value != "") {
return true;
}
else {
if (confirm("Are you sure you want to proceed without comments ?"))
{$find("ModalBehaviour").hide();
return true; }
else
{ return false; }
}
}

</script>

After I click ok button on confirm dialog box progress bar not showing:

telerik:RadScriptManager ID="ScriptManager1" runat="server" />
<telerik:RadAjaxManager ID="RadAjaxManager1" runat="server">
<AjaxSettings>
<telerik:AjaxSetting AjaxControlID="mainPanel">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="mainPanel" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
<telerik:RadAjaxLoadingPanel ID="RadAjaxLoadingPanel1" EnableSkinTransparency ="true" runat="server" Skin="Office2010Blue">
</telerik:RadAjaxLoadingPanel>

<asp:Panel ID="mainPanel" runat="server">

Please help to resolve this issue.

thanks so much.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 09 May 2017, 02:02 PM
Hello,

The provided markup is incomplete. Can you provide the whole page and its or a working runnable project where we can the problem?


Regards,
Rumen
Telerik by Progress
Try our brand new, jQuery-free Angular 2 components built from ground-up which deliver the business app essential building blocks - a grid component, data visualization (charts) and form elements.
Tags
AjaxLoadingPanel
Asked by
Vitaly
Top achievements
Rank 1
Iron
Iron
Answers by
Rumen
Telerik team
Share this question
or