As per:
http://www.kendoui.com/forums/mvc/general-discussions/update-destroy-operations-trigger-the-error-event-of-the-datasource-after-updating-to-q1-2013-(v-2013-1-319).aspx
Where can we get internal build 2013.1.327 ?
It's not listed when I'm logged into my account as an available internal build.
Rene.
http://www.kendoui.com/forums/mvc/general-discussions/update-destroy-operations-trigger-the-error-event-of-the-datasource-after-updating-to-q1-2013-(v-2013-1-319).aspx
Where can we get internal build 2013.1.327 ?
It's not listed when I'm logged into my account as an available internal build.
Rene.
5 Answers, 1 is accepted
0
Hi Rene,
You could get the latest internal build of Kendo UI by following these steps:
Wish you a great day!
Dimiter Madjarov
the Telerik team
You could get the latest internal build of Kendo UI by following these steps:
- Manage Products -> Kendo UI for ASP.NET MVC
- Download Installer and other resources
- Then go to "Latest Internal Builds" for Kendo UI Complete for ASP.NET MVC
- There you will find the latest internal build, which is currently 2013.1.401 and contains the fix, mentioned in the forum topic.
Wish you a great day!
All the best,
Dimiter Madjarov
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Rene
Top achievements
Rank 1
answered on 03 Apr 2013, 04:09 PM
I already have 2013.1.401 installed so I guess that's not the problem then.
I notice than anytime I save / update from a popup edit in a grid - the grid destroy function is called? and I get the error that the destroy is not defined for that.resizable.destroy() as per below.
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();
}
I notice than anytime I save / update from a popup edit in a grid - the grid destroy function is called? and I get the error that the destroy is not defined for that.resizable.destroy() as per below.
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();
}
0
Hello Rene,
Rosen
the Telerik team
We are able to observe the JavaScript error you have described and to address it. The fix will be included in the next internal build.
All the best,Rosen
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Rene
Top achievements
Rank 1
answered on 04 Apr 2013, 11:56 AM
Thank You.
It took a while to figure out where it is happening - it's easily reproducible when you have a grid + popup edit - where the popup edit has a child grid and closing the parent popup.
Rene.
It took a while to figure out where it is happening - it's easily reproducible when you have a grid + popup edit - where the popup edit has a child grid and closing the parent popup.
Rene.
0
Hi Rene,
Rosen
the Telerik team
Indeed, it is expected the destroy method of the Grid widget placed within the KendoUI Window to be executed, when the window is destroyed. Which is happening when the popup edit form is closed.
All the best,Rosen
the Telerik team
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!