rgx71
rgx71

Reputation: 857

Unbind Kendo UI Grid Event

I'm using kendo ui grid in razor, in the declaration of the grid I have this sentence:

.Events(ev => ev.Change("rowClick"))

This rowClick event is executing when I click on a row.

Ones the user do the first click, I activate a button and I don't need the event anymore.

How can unbind the rowClick method associated with the Change event in javascript?

My grid object:

var grid = $("#grid").data("kendoGrid");

Upvotes: 2

Views: 9284

Answers (1)

BENARD Patrick
BENARD Patrick

Reputation: 30975

Fiddle : http://jsfiddle.net/Sbb5Z/603/

function onChangeSelection() {
   alert('oh my god !');
    $('#grid').data("kendoGrid").unbind('change');    
}

It's what you want...

Upvotes: 8

Related Questions