Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The below Page Extension creates a link on the breadcrumb trail line in the AdminPortal called 'My Link'. You can use the following example to add text and links if you know the DIV tag ID.

  1. Click on the on Setup tab

  2. Click on Page Extensions

  3. Click the Add button

  4. Enter the following information:
    Name - My Breadcrumb Link
    Page - / (the forward slash indicates the script should be applied to all pages in the AdminPortal)
    Script - (see below)

    Code Block
    languagejs
    var link = '<a class="smtxt" href="http://www.mylink.com">My Link</a>';
    document.getElementById("crumb").innerHTML =  document.getElementById("crumb").innerHTML +link;
  5. Click Save

...

The page extension below provides an easy way to reach the top level Setup tab for users who are not logging in as Admin.

Info

Note: to specify which Owner Setup page to link to simply replace the ID in the script below with the Owners UserID (i.e. the code (changeuser.rails?id=1') )

  1. Click on the on Setup tab

  2. Click on Page Extensions

  3. Click the Add button

  4. Enter the following information:
    Name - Top Level Owner Setup
    Page - / (the forward slash indicates the script should be applied to all pages in the AdminPortal)
    Script - (see below)

    Code Block
    languagejs
    var link1 = '<a href="../overview/changeuser.rails?id=1'+ '&redirectTo=setup/menu" class="smtxt">Top Level Owner Setup&nbsp;&nbsp;|</a>';
    document.getElementById("crumb").innerHTML = document.getElementById("crumb").innerHTML + link1;
  5. Click Save