Hello,
I have a asp panel and inside a table with fields telerik. I run with a button to save data in the database and then opens a radnotification to alert the user to the notification. But radnotification not see, if I remove radajaxloadingpanel then it works, why?
code aspx:
code behind:
I have a asp panel and inside a table with fields telerik. I run with a button to save data in the database and then opens a radnotification to alert the user to the notification. But radnotification not see, if I remove radajaxloadingpanel then it works, why?
code aspx:
<
telerik:AjaxSetting
AjaxControlID
=
"ImageButtonAggiorna"
>
<
UpdatedControls
>
<
telerik:AjaxUpdatedControl
ControlID
=
"Panel3"
LoadingPanelID
=
"RadAjaxLoadingPanel1"
/>
</
UpdatedControls
>
</
telerik:AjaxSetting
>
<
asp:Panel
ID
=
"Panel3"
runat
=
"server"
>
<
asp:ImageButton
ID
=
"ImageButtonAggiorna"
runat
=
"server"
ImageUrl
=
"~/Image/conferma.png"
OnClientClick
=
"ImageButtonAggiorna_Click"
/>
</
asp:Panel
>
code behind:
Private
Sub
ImageButtonAggiorna_Click(sender
As
Object
, e
As
System.Web.UI.ImageClickEventArgs)
Handles
ImageButtonAggiorna.Click
Me
.RadNotification1.Show(
"Servizio non disponibile, effettuare la registrazione."
)
End
Sub