Announcement

Collapse
No announcement yet.

URL in Navbar to open new tab

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • URL in Navbar to open new tab

    I can easily add a URL to the Navbar from the Administration->User Interface screen, but is there any way to make it target="_blank" so that the URL opens in a new tab?

    thanks

  • #2
    Maybe revise the need of opening in a new tab. Espo won't allow leaving the page if the form is edited but not saved. Not losing entered data is one of the main reason why this feature is used. Forcing opening links in a new tab in most cases is a bad practice. Though many old school developers like to use it. Better to let a user to decide how they want the link to be opened.

    Comment


    • yuri
      yuri commented
      Editing a comment
      Anchor links1 may have a target attribute which controls what happens when that link is clicked. One of the possible values of that attribute is _blank, which

    • BattleMetalChris
      BattleMetalChris commented
      Editing a comment
      The Good Reason in this case is the link opens our Zendesk support site, rather than something within Espo, so they'll usually need to use it whilst also keeping whatever they were working on.

      The way I've solved it was to Extend navbar.js and use the afterRender event to add the target attribute.
      Last edited by BattleMetalChris; 04-10-2024, 12:06 PM.

    • shalmaxb
      shalmaxb commented
      Editing a comment
      BattleMetalChris, it is always nice practice to reveal, how you coded to resolve. Thank you.
Working...
X