Hello,
I am trying call a radalert window from code-behind. For this I followed the instructions here.
I registered a RadWindowManager in my Master page and called the radalert from the client page's code-behind.
Here's the code for both of them:
Master:
client's code-behind:
Now Firebug gives me the following error:
I am trying call a radalert window from code-behind. For this I followed the instructions here.
I registered a RadWindowManager in my Master page and called the radalert from the client page's code-behind.
Here's the code for both of them:
Master:
<form id="form1" runat="server"> |
<telerik:RadScriptManager ID="MasterScriptManager" runat="server" EnablePageMethods="True" |
EnableScriptGlobalization="True" EnableTheming="True"> |
<Services> |
<asp:ServiceReference Path="~/Ws/KanioService.asmx"></asp:ServiceReference> |
</Services> |
</telerik:RadScriptManager> |
<telerik:RadAjaxManager ID="ramMaster" runat="server"> |
<AjaxSettings> |
<telerik:AjaxSetting AjaxControlID="ktbMaster"> |
</telerik:AjaxSetting> |
</AjaxSettings> |
</telerik:RadAjaxManager> |
<telerik:RadFormDecorator ID="masterFormDecorator" runat="server" DecoratedControls="All" /> |
<telerik:RadWindowManager ID="rwmKanioMaster" runat="server"> |
</telerik:RadWindowManager> |
<div id="container"> |
... |
client's code-behind:
clientScript = "radalert('" + Resources.GlobalTranslation.selectFirst + "');"; |
RadScriptManager.RegisterStartupScript(this, this.GetType(), "openWindow", clientScript, true); |
Now Firebug gives me the following error:
l is undefined