Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Harshit 64 posts 226 karma points
    Mar 01, 2016 @ 10:19
    Harshit
    0

    redirection on same tab using ng-click

    Hi There,

    I am working on Dashboard Tabs. where there is a table and fields on it. one field has a link .

    <td data-title="'Email'" sortable="'Email'" filter="{ 'Email': 'text' }" class="level" ng-click="openDetail(item)">
     {{ item.Email}}
    

    js is

     $scope.openDetail = function (Item) {
    
    
                var dialog = dialogService.open({
                 template: '/App_Plugins/LogViewer/backoffice/tracelog/detail.html',
                 dialogData: Item, show: true, width: 400
            });
    

    currently i am using dialog services to show them. I am trying to open that link in the same tabs instead of dialog box .

    any idea about the navigation url i should give on ng-click?

    Regards,

  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies