Is it possible to hide field labels for certain fields. I have some fields, where I do not need a label.
Announcement
Collapse
No announcement yet.
Hide Label for certain fields in detail view
Collapse
X
-
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 ] } ]
- Likes 5
Comment