E
egarcia
Guest
Hello Louis, I also tried with a custom HTML component. Here is the approach that I use with a custom HTML component ($watch from constructor): var cancelWatch = this.$scope.$watch(() => { var element = angular.element("#customhtml0"); if (element.html() !== undefined) { return element; } else { return undefined; } }, (element) => { if (element) { element.html(' '); $("#grid").kendoGrid({ filterable: true, // columnMenu: true, dataSource: { data: [ {CustNum: 1, Name: "TEST#1"}, {CustNum: 2, Name: "TEST#2"} ] } }); cancelWatch(); } }); Please let me know how it goes. Thanks, Edsel
Continue reading...
Continue reading...