Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <apex:repeat value="{!mylist}" var="obj">
  2. <apex:outputPanel id="blockViewPanel" styleClass="blockView">
  3. <apex:panelGrid columns="2">
  4. <apex:image url="{!obj.imageUrl}" styleClass="imageStyle"/>
  5. <apex:panelGroup styleClass="dataStlye">
  6. <apex:outputText value="{!obj.some_field1__c}"/><br/>
  7. <apex:outputText value="{!obj.some_field2__c}"/><br/>
  8. </apex:panelGroup>
  9. </apex:panelGrid>
  10. </apex:outputPanel>
  11. </apex:repeat>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement