Found it, Kendo supports it by just adding a Event to the DataSource the JS function to call. That's it.
.DataSource(dataSource => dataSource
.Ajax()
.Events(events => events.Error("onError"))
.Read(read => read.Action("SearchUser_Read", "Search").Data("parentModel"))
)