R
Ricardo Perdigao
Guest
Did you get any error messages? Is the $scope.grid created at the point the trigger fires? Can you place a break-point when the trigger fire at check? An easy way to setup a break-point at that location: var handler = $scope.$on('$includeContentLoaded', function() { debugger; $scope.grid.options.columns[0] = { encoded: true, editable: false, field: "Some", title: "Test" }; handler(); });
Continue reading...
Continue reading...