Read Only field

Hi,

I’m using SuiteCRM 7.1.7, I want to make one field readonly. While creating field from admin panel, readonly option for field is missing. Someone guide me.

You would need to write custom JS to make a field read-only as it is not a standard field type.

Thanks,

Will.

tryputting this inside the array of the field in editviewdefs.php

‘displayParams’ =>
array(
‘field’ =>
array(
‘readonly’ => ‘readonly’,
),
),