This question is locked. New answers and comments are not allowed.
I have ComboBox, for example:
<%= Html.Telerik().ComboBox()
.Name("ComboBox")
.DataBinding(binding => binding.Ajax().Select("_AjaxLoading", "ComboBox"))
%>
and I have jQuery helper in Master page :
$(document).ajaxStart(
function
() {
//instruction
})
.ajaxStop(
function
() {
//instruction
});
How can I disable this helper for Telerik Ajax?
For jQuery Ajax function it is simple (global:false):
$.ajax({<br>
global:
false
,
type:
"POST"
,
url:
'.....'
,
});