I have a grid with row selection and detail for each rows, ex:
When I click on the button that shows the details, the change event is also triggered. Is there a way to prevent that?
var grid = $('#myTable').kendoGrid({
selectable: "row",
detailInit: function() { /* load detail items with json ajax request */ },
change: function() {.... }
}).data('kendoGrid');
When I click on the button that shows the details, the change event is also triggered. Is there a way to prevent that?