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
JaggyJaggy 

accessablity in visualforce

Hi Guys,

 

I'm using following code for rendering an account record and its contacts. My user from a profile doesnt have read access to contact object. So to avoid error message I've used "$ObjectType.Contact.accessible". But it doesn't seem working for me.

Can you tell what I am missing here?

 

<apex:page standardController="account" tabstyle="Attendance__c">
<apex:form>
<apex:pageBlock title="My Content">

    <apex:pageBlockTable value="{!account.Contacts}" var="item" rendered="{!$ObjectType.contact.accessible}">
    
        <apex:column value="{!item.name}"/> 
    
    </apex:pageBlockTable> 

</apex:pageBlock> 
</apex:form>

<apex:detail rendered="{!$ObjectType.account.accessible}"/>

</apex:page>

 

AmitSahuAmitSahu

Please follow the link :

 

http://wiki.developerforce.com/page/Enforcing_CRUD_and_FLS

 

This is just for reference :

 

<apex:outputText value="{!Contact.Name}" 
             rendered="{!$ObjectType.Contact.fields.Name.Accessible}" />
Navatar_DbSupNavatar_DbSup

Hi,

 

You cannot render an account record and its contacts until you assign the “read access” permission (for the profile) to the Contact Object .

 

Did this answer your question? If not, let me know what didn't work, or if so, please mark it solved.