Sorry to bother, but I've a quite frightening memory leak issue with RadWindowManager.
Very simple to reproduce. I've simply added a radwindowmanager to a page and client side I create a new window (I'm using google.it as target).
I've noticed that in IE8 (but it happens less extensively with chrome and firefox) if I continue to create a window and then close it and I look at the memory used by the browser it continues to get bigger.
I'm using Telerik 2010.2.713.35.
May you tell me if I can fix this issue someway?
Here is the code:
<%@ Page Language="C#" AutoEventWireup="True" %>
<%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="Rad" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script>
function openwindow()
{
var mywindow = radopen("http://www.google.it", null);
}
</script>
</head>
<body>
<form id="form1" runat="server">
<asp:ScriptManager runat="server"></asp:ScriptManager>
<div>
<a href="#" onclick="openwindow();return false;">Open window</a>
<br />
<br />
<Rad:RadWindowManager runat="server" DestroyOnClose="true">
</Rad:RadWindowManager>
</div>
</form>
</body>
</html>
<body>
<form id="form1" runat="server">
<asp:ScriptManager runat="server"></asp:ScriptManager>
<div>
<a href="#" onclick="openwindow();return false;">Open window</a>
<br />
<br />
<Rad:RadWindowManager runat="server" DestroyOnClose="true">
</Rad:RadWindowManager>
</div>
</form>
</body>
</html>
Best regards, Andrea Pirola