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
SkyBlue2007SkyBlue2007 

How to hide "Required Information" in pageBlockSection.

Hi everyone,

 

I'd like to hide "Required Information" in pageBlockSection, but I cann' find

an Attribute Name. 

 

Thanks,

Seiji

Best Answer chosen by Admin (Salesforce Developers) 
Afzal MohammadAfzal Mohammad

Just remove mode="edit" attribute from your <apex:pageblock> tag

 

 

<apex:pageBlock title="Create New Contact" mode="edit">

 

 

Hope that helps.

 

Afzal

All Answers

Afzal MohammadAfzal Mohammad

Just remove mode="edit" attribute from your <apex:pageblock> tag

 

 

<apex:pageBlock title="Create New Contact" mode="edit">

 

 

Hope that helps.

 

Afzal

This was selected as the best answer
SkyBlue2007SkyBlue2007

Hi Afzal,

 

Thank you for your reply.

It's helpful for solving my problem.

 

Thanks,

Seiji