Hi kendo team and users, I read that sample about changing the grid language, on that link:
http://demos.telerik.com/kendo-ui/grid/localization
I tried to edit that demo, and change the "full grid reconstruction" to a simple setOptions, and it seems to work:
http://dojo.telerik.com/@foxontherock/aJOBu/3
The $.getScripts replace the Grid prototype, so I just update the current gri messages from the prototype, like that:
grid.setOptions({
messages: kendo.ui.Grid.prototype.options.messages
});
Do you suggest to use that method or not? possible memory leak or something else?
And, is it available for all other kendo components?
For now, everything works fine, and the language change seems faster than rebuilding the whole grid.
Thank you