Hi I expended so much time trying to solve an issue with the dataBound event of the Angular kendo grid,
I finally could see that the error consist that the Angular kendo grid is not recognizing neither the dataSource object nor the pager object in the databound event.
This is the code of the dataBound function that I added to my Angular Kendo Grid:
dataBound: function () {
console.log("I am inside the databound event of the Grid Source");
console.log("printing object this.dataSource"); // Return Undefined
console.log(this.dataSource); // Return Undefined
console.log("printing object this.pager"); // Return Undefined
console.log(this.pager); // Return Undefined
if (this.dataSource.totalPages() === 1) {
this.pager.element.hide();
}
else {
this.pager.element.show();
}