You need to sign in to do that
Don't have an account?
NNR
Regarding visualforce page
Q:i have created vf page with account standardcontroller and extensions,
it is possible to access fiedset of opportunity object in my vf page fieldset name is:oppfieldset
plz help me out..........................
it is possible to access fiedset of opportunity object in my vf page fieldset name is:oppfieldset
plz help me out..........................
https://www.salesforce.com/us/developer/docs/apexcode/Content/apex_methods_system_fieldsets_describe.htm
My query is i writing visualforce page by using standardcontroller is Account,but i want use the opportunity fieldset in visualforce page
<apex:repeat value="{!$ObjectType.opportunity .FieldSets.RelatedList}" var="f" >
<apex:column value="{!rec.obj[f]}" />
</apex:repeat>
by using above one it is showing error in page