I have managed to further pinpoint the issue I'm having with 2013.1.401.
It seems to only occur when I have nested grids (grid with popup edit with child grid):
a) parent grid with popup edit window (A)
b) popup edit window (A) from a contains a child grid (child grid also has popup edit window(B)).
c) upon closing the popup edit window A - not matter if I edited/updated/created or just closed the window - it faults out in kendo.all.js in the grid destroy for the child grid. The first error occurs at the that.resizable.destroy(); below: ( I have verified the error occurs on the child grid destroy).
Basically - this is reproducible for all grids with popup edit windows with child grids on those popup edit windows.
destroy: function() {
//alert('destroying grid?');
var that = this,
element;
Widget.fn.destroy.call(that);
if (that.pager) {
that.pager.destroy();
}
if (that.groupable) {
that.groupable.destroy();
}
if (that.options.reorderable) {
that.wrapper.data("kendoReorderable").destroy();
}
if (that.resizable) {
that.resizable.destroy();
}
It seems to only occur when I have nested grids (grid with popup edit with child grid):
a) parent grid with popup edit window (A)
b) popup edit window (A) from a contains a child grid (child grid also has popup edit window(B)).
c) upon closing the popup edit window A - not matter if I edited/updated/created or just closed the window - it faults out in kendo.all.js in the grid destroy for the child grid. The first error occurs at the that.resizable.destroy(); below: ( I have verified the error occurs on the child grid destroy).
Basically - this is reproducible for all grids with popup edit windows with child grids on those popup edit windows.
destroy: function() {
//alert('destroying grid?');
var that = this,
element;
Widget.fn.destroy.call(that);
if (that.pager) {
that.pager.destroy();
}
if (that.groupable) {
that.groupable.destroy();
}
if (that.options.reorderable) {
that.wrapper.data("kendoReorderable").destroy();
}
if (that.resizable) {
that.resizable.destroy();
}