I am facing an issue with close and rebind radwindow when i click button to close window and rebind radgrid in parent page.
it work on IE, chrome but it does not close and rebind data on safari.
RadWindow code behind
protected void Button1_Click(object sender, EventArgs e)
{
InjectScript.ClosePopup(this, "CloseAndRebind('navigateToInserted')");
}
InjectScript class
public static void ClosePopup(Page p, string jsFunc)
{
ScriptManager.RegisterStartupScript(p, p.GetType(), "CloseWindow", jsFunc, true);
}
t