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

[Solved] Client-bound activate event not fired

1 Answer 91 Views
Window
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Glenn Henriksen
Top achievements
Rank 1
Glenn Henriksen asked on 24 Feb 2011, 10:59 AM
I'm attaching an event for window activate but it's never getting triggered. Attaching open and close events work just fine. 

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). 

1 Answer, 1 is accepted

Sort by
0
nachid
Top achievements
Rank 1
answered on 23 Mar 2011, 10:48 AM
I am experiencing the same with 2011.1.315
Tags
Window
Asked by
Glenn Henriksen
Top achievements
Rank 1
Answers by
nachid
Top achievements
Rank 1
Share this question
or