You need to sign in to do that
Don't have an account?
Code+1
Visualforce requirement
Hi All,
I would like to develop a vf page, which displays three columns from one object.
Field Name | Help Text | Description . This help text and description are entered while creating the fields.
I would like to capture these above mentioned details in a visualforce page.
Kindly help. I tried the below code and it does not suit my requirement
<apex:page standardController="Account">
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection >
<apex:pageBlockSectionItem >
<apex:outputLabel value="{!$ObjectType.Account.Fields.Active__c.inlineHelpText}"/>
<apex:inputField value="{!Account.Active__c}"/>
</apex:pageBlockSectionItem>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>
I would like to develop a vf page, which displays three columns from one object.
Field Name | Help Text | Description . This help text and description are entered while creating the fields.
I would like to capture these above mentioned details in a visualforce page.
Kindly help. I tried the below code and it does not suit my requirement
<apex:page standardController="Account">
<apex:form >
<apex:pageBlock >
<apex:pageBlockSection >
<apex:pageBlockSectionItem >
<apex:outputLabel value="{!$ObjectType.Account.Fields.Active__c.inlineHelpText}"/>
<apex:inputField value="{!Account.Active__c}"/>
</apex:pageBlockSectionItem>
</apex:pageBlockSection>
</apex:pageBlock>
</apex:form>
</apex:page>