Change title on browser for Contact

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • malg
    Junior Member
    • Jun 2023
    • 20

    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:	110
Size:	2.8 KB
ID:	107033
  • abidoss
    Senior Member
    • Mar 2023
    • 231

    #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

    • dimyy
      Active Community Member
      • Jun 2018
      • 573

      #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...