I'm writing a generic error handler for all of the Kendo Grids. I need to get that source Grid to prevent its default behavior in saving data. In the handler, you can access the source's DataSouce by args.sender. How can I access the Kendo Grid from that DataSouce?
The only approach I found was this suggestion, searching through all grids, and the handler looks like below, can you suggest anything better and more efficient?
function genericErrorHandler(args) {
    if (args.errors) {
        $('.k-grid').each(function () {
            var grid = $(this).data('kendoGrid');
            if (grid.dataSource == args.sender) {
                alert('found!');
            }
        })
    }
}