Hide Label for certain fields in detail view

Collapse
X
 
  • Time
  • Show
Clear All
new posts

  • telecastg
    commented on 's reply
    You are very welcome

  • shalmaxb
    replied
    telecastg, good morning. Thank you for this useful hint. I did not find that.

    Leave a comment:


  • telecastg
    replied
    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

    Leave a comment:


  • shalmaxb
    started a topic Hide Label for certain fields in detail view

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