Hi,
I've just updated my version of Kendo UI to the latest commercial version.
I'm using the same application pattern as used in the Kendo Mobile Music Store (require.js, one js file per view).
I'm not sure if this has changed, but the initialisation of Application.pane now seems to occur after startup:-
That means that anything that uses Application.pane (utils.redirect, utils.showLoading) on a "show" call from my initial view crashes thus:-
Please let me know if you can help, or if I can provide further information.
Matt
I've just updated my version of Kendo UI to the latest commercial version.
I'm using the same application pattern as used in the Kendo Mobile Music Store (require.js, one js file per view).
I'm not sure if this has changed, but the initialisation of Application.pane now seems to occur after startup:-
$(function(){
that.element = $(element ? element : document.body);
that._setupPlatform();
that._setupElementClass();
that._attachHideBarHandlers();
that.pane = new Pane(that.element, that.options);
that._attachMeta();
if (that.options.updateDocumentTitle) {
that._setupDocumentTitle();
}
that._startHistory();
});
Uncaught TypeError: Cannot read property 'history' of undefined scripts/utils.js:54
redirect scripts/utils.js:54
Matt