Hello,
i'm having trouble with kendo ui events handler.
When an error has been throwed from controller to the request response, the error is showed on an alert, like this:
@(Html.Kendo().Grid(Model)
.Name(
"grid"
)
.Events(e => e.Error(
"error"
)
//another declarations
function
error (args){
if
(!args)
return
;
if
(args.errors) alert(args.errors)
}
The problem is when the delete request is make again, the grid makes the requisition again, and keep maintaining the request makes before, doing multiple requests.