Guest User

Untitled

a guest
Jul 12th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <apex:page standardController="Opportunity" lightningStylesheets="true">
  2. <apex:detail subject="{!Opportunity.Id}" relatedList="true" title="true" rendered="{!Opportunity.Amount < 10}" />
  3. <apex:pageBlock rendered="{!Opportunity.Amount > 10}">
  4. <apex:pageBlockSection columns="1">
  5. <apex:pageMessage summary="Amount is less than 10" severity="warning" strength="3" />
  6. </apex:pageBlockSection>
  7. </apex:pageBlock>
  8. </apex:page>
Add Comment
Please, Sign In to add comment