How do I make this work when removing an item from the grid.
@(Html.Kendo().Grid<Models.JobCollection>()
.Name(
"JobCollectionGrid"
)
....
.Events(events => events.Save(
"OnJobCollectionSave"
).Remove(
"OnJobCollectionDelete"
))
....
function
OnJobCollectionDelete(e) {
//???? What container do I need. How do I get it?
//????e.container is not defined for this event.
var
container = $(
"#JobCollectionGrid"
);
kendo.ui.progress(container,
true
);
}