E
egarcia
Guest
Hello Wolfgang, The onInit event might be too early to set the property on the JSDO instance. A possible approach is to add a watch on the onShow event that would monitor changes to the grid component. Example: $scope.$watch(function() { return angular.element('[data-role="grid"]').data("kendoGrid"); }, function(newValue, oldValue) { var grid; if (newValue) { console.log("DEBUG: " + newValue); grid = newValue; console.log("DEBUG: " + grid.dataSource.transport.jsdo); } }); I hope this helps, Edsel
Continue reading...
Continue reading...