Under the Prometheus version of radconfirm, the client-side javascript seems to have a problem. We have a client-side button that triggers the following javascript:
radconfirm('Are you sure?', DeleteActivity, 400, 200, null, 'Delete Class/Activity');
The code that generates the DeleteActivity function on the server looks like this:
ScriptManager.RegisterClientScriptBlock(Page, typeof(String), "DeleteActivity", "function DeleteActivity(arg) { if (arg) { " + ClientScript.GetPostBackEventReference(DeleteActivityControl, "").Replace('\'', '\"') + "; }; };", true);
radconfirm executes the DeleteActivity function, but for some reason on IE 6 the postback reference doesn't post back. On IE 7 it works fine.
Switching back to the "RadControls for ASP.NET" version of RadWindow seems to resolve the problem and it works on both IE 6 and IE 7.
Any ideas why this is happening?
radconfirm('Are you sure?', DeleteActivity, 400, 200, null, 'Delete Class/Activity');
The code that generates the DeleteActivity function on the server looks like this:
ScriptManager.RegisterClientScriptBlock(Page, typeof(String), "DeleteActivity", "function DeleteActivity(arg) { if (arg) { " + ClientScript.GetPostBackEventReference(DeleteActivityControl, "").Replace('\'', '\"') + "; }; };", true);
radconfirm executes the DeleteActivity function, but for some reason on IE 6 the postback reference doesn't post back. On IE 7 it works fine.
Switching back to the "RadControls for ASP.NET" version of RadWindow seems to resolve the problem and it works on both IE 6 and IE 7.
Any ideas why this is happening?