[progress Communities] [progress Openedge Abl] Forum Post: Re: Using The Kuib, How To Pass...

  • Thread starter Thread starter egarcia
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top