function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Developer129Developer129 

Unable to remove label from data entry page for a readonly field

Hi,

 

I dont know if this is bug or whether I am doing something wrong. I have a field 'field A' in an object, I want it to be read only for a one profile X and not read only (editable) for another profile Y. I have made two page layout, one where field 'field A' is readonly and the other one where the field is not readonly (editable) and assigned each layout to the appropriate profile. After doing this for profile X I do not see the place where the value is put in for 'field A' however I keep on seeing the label for the field. Is there a way to remove the label as well, I was hoping that label should have been removed along with the place where value is put in. 

 

Thanx

Pradeep_NavatarPradeep_Navatar

You need to remove the field from the pagelout where you don't want to show the label or make the field read only.

 

Did this answer your question? if so, please mark it solved.

Developer129Developer129

I have made the field read only on the page layout. Although I do not see the place where value is entered however I still keep on seeing the label for the field. Help appreciated

 

Thanks

SteveBowerSteveBower

Perhaps there is a confusion in terms.  Readonly means that although the user can't edit the data, they can still see whatever value was already in the field.

 

So, the fact that you can still see the label, but don't see any data makes perfect sense assuming that the value in the field is null when you're looking at it.

 

If your goal is to not only make it readonly, but not make it viewable, then you can skip the readonly setting, and just use the page layout editor to remove the field entirely from the page.  (in which case it would still be editable for that profile, but since it's not on the page, it doesn't matter -- for this purpose anyway).

 

Hope this clarifies.  Best, Steve.

Developer129Developer129

I think I did not make this clear before. The label I am seeing is not on the detail page for the record its on the form page where values are entered.