Hide Label for certain fields in detail view

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • shalmaxb
    Senior Member
    • Mar 2015
    • 1606

    Hide Label for certain fields in detail view

    Is it possible to hide field labels for certain fields. I have some fields, where I do not need a label.
  • telecastg
    Active Community Member
    • Jun 2018
    • 907

    #2
    Hello shalmaxb.

    Yes it is possible.

    Go to your entity's detail layout file and set out the "noLabel" flag as true for your target field, like the example below:

    custom\Espo\Custom\Resources\layouts\ServiceTicket \detail.json
    Code:
    [
        {
            "rows" : [
                {
                    "name": "property"
                    "noLabel" : true
                }
                // more code
            ]
        }
    
    ]
    Don't forget to save, clear cache and rebuild

    Comment

    • shalmaxb
      Senior Member
      • Mar 2015
      • 1606

      #3
      telecastg, good morning. Thank you for this useful hint. I did not find that.

      Comment


      • telecastg
        telecastg commented
        Editing a comment
        You are very welcome
    Working...