This is a migrated thread and some comments may be shown as answers.

binding Ajax and disable jQuery AjaxStart

0 Answers 145 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
This question is locked. New answers and comments are not allowed.
Piotr
Top achievements
Rank 1
Piotr asked on 09 Feb 2012, 01:18 PM

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: '.....',                
});
Tags
ComboBox
Asked by
Piotr
Top achievements
Rank 1
Share this question
or