Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <apex:pageBlock title="Manuals">
  2. <apex:pageBlockTable value="{!urlmap}" var="key">
  3. <apex:column value="{!key}"/>
  4. <apex:column width="150px">
  5. <apex:outputtext rendered="{IF(CONTAINS({!key},'Manual'),true, false)}">
  6. <apex:outputLink value="{!urlmap[key]}">Click here to download</apex:outputLink>
  7. </apex:outputtext>
  8. </apex:column>
  9. </apex:pageBlockTable>
  10. </apex:pageBlock>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement