28

I have a table on HTML and each row leads to a different page, with more details about that row. But as I am using angularjs, with ng-click I can't right click this row and select 'open in a new tab'. Is there any way to solve it?

Thanks in advance!

jgabrielfaria
  • 1,543
  • 3
  • 15
  • 19

4 Answers4

30

If possible you should convert your element to an anchor element.

<a ng-href="{{ your dynamic url }}" ng-click="your function">Your link text</a>

The browser will interpret the element as a link, and will therefor give you the correct dropdown. Note that you also have to have the correct href value to open in a new tab.

EDIT: I would recommend this question if you want a more detailed answer on how to fix this kind of behaviour using JQuery.

Erex
  • 1,625
  • 1
  • 17
  • 21
  • This is a little confusing. The example makes it sound like I need both `ng-href` and `ng-click` on the same element. – Travis Parks Mar 18 '15 at 15:16
  • I can see that. But the question was "How to allow 'Open in a new tab' when using ng-click?" Interrpeted it as he wanted to have the 'Open in a new tab' option on a element that also used ng-click. – Erex Mar 19 '15 at 10:44
  • You would only need either ng-click or ng-href , if you want both of them to open the link in a new tab . The angularJS code checks if the browser URL is same as the one on the ng-href and switches urls if they are not . – Roshan Khandelwal Nov 03 '15 at 12:28
  • This may technically work, but Chrome blocks this as a pop-up. Most users are not savvy enough to notice this and permit the site, so be wary about your user experience. – Womble Aug 15 '18 at 20:32
2

Inside your ng-click function you can call window.open(url, '_blank') however as a word of warning, this will depend on the browser and current settings.

In some cases this will open in a pop-out window and in other cases it will open in a new tab. There is no way to force either behavior as the javascript is browser agnostic, it has simply requested a new window and it is up to the browser the decide how to implement it. see here for a discussion on forcing a tab or window

However the only way to get that right-click option or the ctrl+click to open in a new tab is if the browser sees a <a> tag. Otherwise it doesn't treat it as a link.

Community
  • 1
  • 1
David Beech
  • 1,098
  • 8
  • 13
1

If you want to generate your href dynamically based on some condition then you can set your href on ng-mousedown event and after that you can perform any event like open link in new tab, open link in new window and click.

HTML:

<a href="javascript:void(0)" ng-mousedown="openDetailView($event, userRole)">{{label}}</a>

JS :

  $scope.openDetailView = function (event, userRole) {
         if(userRole == 'admin') {
             jQuery(event.target).attr('href', 'admin/view');

         } else {
             jQuery(event.target).attr('href', 'user/view');

         }
  };
Rubi saini
  • 2,515
  • 23
  • 21
1

You have to use anchor element inside the table row.

HTML

<tr>
    <a ng-href="dynamic url" ng-click="openItem($event)">Open the item</a>
</tr>

Controller

$scope.openItem = function (event) {
    event.preventDefault();
    // code to open a item
}
Fizer Khan
  • 88,237
  • 28
  • 143
  • 153