This is a migrated thread and some comments may be shown as answers.

Windows not work on IE 9

1 Answer 81 Views
Window
This is a migrated thread and some comments may be shown as answers.
Abdullah Önden
Top achievements
Rank 1
Abdullah Önden asked on 26 Oct 2010, 08:11 AM
Here how I call my window. Both code behind and client methods are not working, the window just don't open.

function OpenWindow(url) {
    var oWindow = window.radopen(url, 'window');
 
    oWindow.set_behaviors(Telerik.Web.UI.WindowBehaviors.Close);
    oWindow.moveTo(150, 100);
    oWindow.setSize(1000, 360);
 
    var browserWin = oWindow.BrowserWindow;
    var fn = new browserWin.Function("parent.window.location.reload(false);");
 
    oWindow.add_close(fn);
}


<
a onclick="OpenWindow('<%# WindowURL(Eval("AddresID").ToString()) %>')" class="edit">Edit</a>

private void NewWindow()
{
    RadWindow newwindow = new RadWindow();
 
    newwindow.ID = "RadWindow1";
    newwindow.AutoSize = true;
    newwindow.EnableEmbeddedBaseStylesheet = false;
    newwindow.EnableEmbeddedSkins = false;
    newwindow.Behaviors = WindowBehaviors.Close;
    newwindow.NavigateUrl = GetWidgetPagerURL("Profil/Address.ascx&isInvoiceAddress=1");
    newwindow.VisibleOnPageLoad = true;
    newwindow.VisibleStatusbar = false;
    newwindow.OnClientClose = "OnClientClose";
    rwm.Windows.Add(newwindow);
}


1 Answer, 1 is accepted

Sort by
0
Georgi Tunev
Telerik team
answered on 26 Oct 2010, 11:28 AM
Hi Abdullah,

We are familiar with such problems but we still officially don't support IE9 (we don't support browsers in BETA stage). Of course, we work on the issues that we discover with the previews, but in general we prefer to wait until the final version is out before making any serious modifications in our code. Once IE9 is officially released, we will publish a service pack that provides support for the new browser as soon as possible - usually no more than a week after the browser is out.



Kind regards,
Georgi Tunev
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items
Tags
Window
Asked by
Abdullah Önden
Top achievements
Rank 1
Answers by
Georgi Tunev
Telerik team
Share this question
or