- Help Center
- Customizing
- CustomFields
Can it be controlled whether custom fields can be edited or only viewed?
What visibility options are available for custom fields in the system?
The system allows for precise control over the visibility and editability of individual custom fields. This is done using the settingcustomFieldsEditability
, which enables specific fields to be marked as either read-only or editable.
This setting is especially useful when certain fields should be visible but not modifiable by end users — for example, in the case of automatically calculated values or fields populated via an interface.
The configuration is done as an array of objects, with each object specifying the field ID and its editability status:
customFieldsEditability:[{
id:'pmo.cf1',
readOnly:true
},{
id:'pmo.cf2',
readOnly:false
}],
Here:
-
id
stands for the unique identifier of the custom field -
readOnly
controls the editability (true
= read-only,false
= editable)
This option enables precise control over access rights to custom fields and contributes to data security and clear role distribution.