Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2017
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. <apex:page standardController="Opportunity">
  2.  
  3. <style>
  4. .ReqHelpText {
  5. display : inline-block;
  6. width : 3px;
  7. background-color : #c00;
  8. }
  9. </style>
  10.  
  11. <apex:form>
  12. <apex:pageblock >
  13. <apex:pageBlockSection collapsible="false" showHeader="true" title="Opportunity Section">
  14. <apex:facet name="header">
  15. <apex:outputPanel>
  16. <apex:outputPanel styleClass="ReqHelpText">&nbsp;</apex:outputPanel>
  17. <apex:outputText value="Fill Required Fields"/>
  18. </apex:outputPanel>
  19. </apex:facet>
  20.  
  21. <apex:inputField value="{!Opportunity.Name}"/>
  22. </apex:pageBlockSection>
  23. </apex:pageblock>
  24. </apex:form>
  25. </apex:page>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement