I have the RadWindowmanager on the page and I am still getting the error:
Object doesn't support this property or method.
Here is the code.
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Web20">
<Windows>
<telerik:RadWindow Skin="Vista" ID="RadWindowZ" runat="server" Title="Change Location" Height="200px"
Width="400px" OnClientClose="OnClientClose" VisibleStatusbar="false" Modal="true"
/>
</Windows>
</telerik:RadWindowManager>
<
script type="text/javascript">
function
displayit(sender, eventArgs)
{
var item = eventArgs.get_item();
if (item.get_text() == "Change Location")
{
var oWindow = window.radopen("ChangeLocation.aspx","RadWindowZ");
}
}
function
OnClientClose(radWindow)
{
if (radWindow.argument) location.reload(true);
}
</
script>