I am using kendo grid on multiple elements throughout my app. I want to do few changes wherever any grid is loaded fully.
Is there a way to write common function for all grids before grid is loaded ?
for ex -
<script>
function afterGridRendered(){};
// code to bind above method to all grids
$("#grid").kendoGrid({
...
});
</script>