actionComplete event can be bind when declaring the grid like below:
let grid: Grid = new Grid({
actionComplete: function (args){}
});
But how to bind the event when the grid creation already completed.
e.g.:
var gridObj = document.getElementById('Grid').ej_instances[0];
gridObj.actionComplete = function(args) { console.log(args); };
This is not working, what is the correct syntax to do so?