Hi,
Since KendoUI is built on jQuery, I would expect all functionalities available in jQuery to be used to the fullest in your framework.
We initialise our kendoWindow as follows:
var
modalTitle = $(
this
).attr(
'data-modal-title'
var
modalUrl = $(
this
).attr(
'data-modal-url'
var
modalWidth = $(
this
).attr(
'data-modal-width'
);
$(
'<div></div>'
)
.kendoWindow({
width: modalWidth,
title: modalTitle,
content: modalUrl,
modal:
true
})
.data(
"kendoWindow"
)
.center()
.open();
This triggers an ajax call to the server, so using jQuery, I would expect that the ajaxStart() event would be triggered, as we use that event to show a "loading..." icon on the top right corner of the website.
It doesn't get triggered. Is this desired behaviour, or a bug? I hope the latter, as we really need this framework to be built on top of the jQuery libraries, so we don't need to change everything we already have in place!
Can you please confirm that your framework is built on top of jQuery, and uses its methods when available?