Guest User

Untitled

a guest
Aug 22nd, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <apex:pageBlockSection columns="2" id="ppCard">
  2. <apex:repeat value="{!$ObjectType.my_Object__c.FieldSets.myFieldset}" var="ap1">
  3. <apex:inputField value="{!ps[ap1.fieldPath]}"
  4. styleClass="{! IF((ap1.fieldPath == 'field1'), 'fieldValue1', '')}
  5. {! IF((ap1.fieldPath == 'field2'), 'fieldValue2', '')} inputfield"
  6. label="{! IF((ap1.fieldPath == 'field1'), ap1.label+' (without Salutation)', ap1.label)}"
  7. required="{!OR(ap1.required, ap1.dbrequired)}"/>
  8. </apex:repeat>
Add Comment
Please, Sign In to add comment