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
RVARVA 

No inputfield/inputfield grayed in a webform (Visualforce Page)

Small question, if someone already had same issue.

We developped a Webform as a Visualforce Page based on fields from Account.

In this webform, we have some outputfield :

example : <apex:outputField value="{!currOrga.Name}"/>/>

but also inputfield :

example : <apex:inputField value="{!orgaModif.IATA_New__c}"/>

but when the webform is displayed two inputfield don't have input field box :


Best Answer chosen by Admin (Salesforce Developers) 
colemabcolemab

If this is a web form used on a public site, you will want to enable field level security for the public site user under Your Name->Settings->Develop->Sites->INSERTSITENAMEHERE ->  Public Access Settings button.

 

This is because site profiles don't appear under the normal management tools.

All Answers

aballardaballard

This would usually mean that the user does not have write access to the field.

colemabcolemab

If this is a web form used on a public site, you will want to enable field level security for the public site user under Your Name->Settings->Develop->Sites->INSERTSITENAMEHERE ->  Public Access Settings button.

 

This is because site profiles don't appear under the normal management tools.

This was selected as the best answer
RVARVA

Hi Colemab,

 

Thanks a lot.

 

You saved my life  :-))