I'm creating a very simple page that calls radconfirm. Basically, when the page loads, it is supposed to display a confirm box. Here is the code for the page:
Unfortunately, the above errors out on the following line in the Telerik AXD reference:
<%@ Page Language="VB" AutoEventWireup="true" CodeFile="Default.aspx.vb" Inherits="_Default" %> |
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %> |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> |
<html xmlns="http://www.w3.org/1999/xhtml"> |
<head runat="server"> |
<title>Untitled Page</title> |
</head> |
<body> |
<form id="form1" runat="server"> |
<telerik:RadScriptManager ID="ScriptManager1" runat="server" EnableTheming="True"> |
</telerik:RadScriptManager> |
<div> |
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Behavior="Default" |
InitialBehavior="None" Left="" Skin="Vista" Top=""> |
</telerik:RadWindowManager> |
<script language="javascript" type="text/javascript"> |
radconfirm('Hello', test, 330, 100); |
function test(arg) { |
alert('test' + arg); |
} |
</script> |
</div> |
</form> |
</body> |
</html> |
Unfortunately, the above errors out on the following line in the Telerik AXD reference:
var _e=_d._getStandardPopup("confirm",_7); |
(line 4197)
I've used this method before with the older RadControls, but it does not seem to work with 2008 (Version: 2008.1.619.20).
Does anyone have any suggestions? It is sort of critital that I resolve this quickly, as deadlines are looming.
Thanks in advance,
Alex Tushinsky