This question is locked. New answers and comments are not allowed.
In nested popup windows ( where grid A opens popup edit window - where popup edit window contains tabs with grids also opening popup windows - all my close, insert, update, and cancel buttons would stop working all of a sudden.
Digging - I found what was breaking: (this is probably not the root cause) - but this is how I fixed it - and it all works well now:
(change below in bold)
In telerik.window.min.js
in the close: function()
where:
var g = d(".t-window").filter( function( ) {
var i = d(this);
// I added the next 2 lines since i.data("tWindow") is null in my nexted popups....
if( i.data("tWindow") == null || i.data("tWindow") == 'undefined )
return i.is(":visible")
return i.is(":visible") && i.data("tWindow").modal
});
Digging - I found what was breaking: (this is probably not the root cause) - but this is how I fixed it - and it all works well now:
(change below in bold)
In telerik.window.min.js
in the close: function()
where:
var g = d(".t-window").filter( function( ) {
var i = d(this);
// I added the next 2 lines since i.data("tWindow") is null in my nexted popups....
if( i.data("tWindow") == null || i.data("tWindow") == 'undefined )
return i.is(":visible")
return i.is(":visible") && i.data("tWindow").modal
});