You need to sign in to do that
Don't have an account?

Work on particular field in field set?
Hi,
I am using Field set to display the transpose table. In the field set I am having 10 fields, among them I have to apply style to the particular field. Eg,.3rd field. How to do this,Guide me to resolve this issue.
Try this,
<apex:repeat value="{!$ObjectType.Account.FieldSets.fieldset1}" var="f" >
<apex:outputField value="{!account[f]}" rendered="{!IF(f.Label!='Account Name','true','false')}" style="text-align:center;color:blue;"/>
<apex:outputField value="{!account[f]}" rendered="{!IF(f.Label!='Account Site','true','false')}" style="text-align:center;color:white;"/>
</apex:repeat>
Thanks