Announcement

Collapse
No announcement yet.

Change title on browser for Contact

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

  • Change title on browser for Contact

    Is there a way to edit the title at the top of the browser window?

    For example, when viewing a contact, we'd love the company reference number beforehand (e.g. ' [A113] John Smith' ) instead of just the name

    Click image for larger version

Name:	image.png
Views:	94
Size:	2.8 KB
ID:	107033

  • #2
    ​Add a custom field to use instead of name.
    use the name field to display the custom field + the reference​

    nom = string\concatenate(ref, ' ', nom);

    Comment


    • #3
      You can define custom dynamic handler (https://docs.espocrm.com/development/dynamic-handler/) and redefine updatePageTitle function in parent view.
      The updatePageTitle function responsible for the page title is located here \client\src\views\detail.js

      Comment

      Working...
      X