What I want to do is following in but in a new Tab or new Window:
$state.go(\'studentsReport\', {
type: $scope.report.type, // string
selectedStude
You should trying to use this:
/* @ngInject */
function SomeCtrl ($state, $window) {
$window.open($state.href('stateName', {}, {absolute: true}), '_blank');
}
Note: the /* ngInject */
facilitates automatic dependency injection annotation if using ng-annotate (available in cli, gulp, and grunt flavours)