Announcement

Collapse
No announcement yet.

Hide Label for certain fields in detail view

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

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

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


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