Note: This release is in preview. Features described here don’t become generally available until the latest general availability date that Salesforce announces for this release. Before then, and where features are noted as beta, pilot, or developer preview, we can’t guarantee general availability within any particular time frame or at all. Make your purchase decisions only on the basis of generally available products and features.
$FieldSet
Provides access to a field set defined in your organization.
Usage
Use this in your Visualforce pages to dynamically iterate over fields in a field set. You must prefix this global variable with a reference to the standard or custom object that has the field set.
Example
1<apex:page standardController="Account">
2 <apex:repeat value="{!$ObjectType.Account.FieldSets.myFieldSetName}" var="field">
3 <apex:outputText value="{!field}" />
4 </apex:repeat>
5</apex:page>