No Results
Search Tips:
- Please consider misspellings
- Try different search keywords
$FieldSet
組織に定義された項目セットへのアクセスを提供します。
使用方法
Visualforce ページで使用して、項目セットの項目を動的に反復処理します。このグローバル変数には、項目セットを持つ標準オブジェクトまたはカスタムオブジェクトへの参照をプレフィックスとして付ける必要があります。
例
1<apex:page standardController="Account">
2 <apex:repeat value="{!$Account.FieldSet.mySpecialFields}" var="field">
3 <apex:outputText value="{!field}" />
4 </apex:repeat>
5</apex:page>