I had loading ajax spinner working in my MVC project. When I convert my project to use Kendo UI it stopped working. Because it there is no dialog method in Knedo Ui. I post my old code can you help me convert this code to work with Kendo
Thanks
var loader = $('#loader').dialog({ autoOpen: false, modal: true, resizable: false, width: 150, height: 50 });
$(".ui-dialog-titlebar").hide();
loader.ajaxStart(function () {
$(this).dialog('open');
}).ajaxStop(function () {
$(this).dialog('close');
});
Thanks
var loader = $('#loader').dialog({ autoOpen: false, modal: true, resizable: false, width: 150, height: 50 });
$(".ui-dialog-titlebar").hide();
loader.ajaxStart(function () {
$(this).dialog('open');
}).ajaxStop(function () {
$(this).dialog('close');
});