This question is locked. New answers and comments are not allowed.
I'm attaching an event for window activate but it's never getting triggered. Attaching open and close events work just fine.
I never get the "activate" message box, but I get the other two just fine.
Using Telerik.Web.MVC 2010.3.1318.340 (2010 Q3 SP1).
var element = $('#Window');var window = element.data("tWindow");element.bind('open', function (e) { // Does stuff alert('open');});element.bind('activate', function (e) { // Does stuff alert('activate');});element.bind('close', function (e) { // Does stuff alert('close');});window.open();I never get the "activate" message box, but I get the other two just fine.
Using Telerik.Web.MVC 2010.3.1318.340 (2010 Q3 SP1).