Can anyone help: Why doesn't this fire the remove event in the grid?
Full Example:
http://jsfiddle.net/bGR88/9/
Thanks
$(
"#grid"
).delegate(
"#deleteItem"
,
"click"
,
function
(e) {
var
grid = $(
'#grid'
).getKendoGrid();
var
a = grid.dataItem($(
this
).closest(
'tr'
));
grid.removeRow(a);
});
Full Example:
http://jsfiddle.net/bGR88/9/
Thanks