How to give more emphasis on Required fields in form ?
Prevention is better than Cure. Most of the time users forget to fill in required fields in the form & realize than while saving the record.
How to prevent that ?
Giving a highlighted Help text through each section of the forms would give more emphasis on required fields. By doing so, user will fill some values & will never have any issues while saving the record.Where is the Code ?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:page standardController="Opportunity"> | |
<style> | |
.ReqHelpText { | |
display : inline-block; | |
width : 3px; | |
background-color : #c00; | |
} | |
</style> | |
<apex:form> | |
<apex:pageblock > | |
<apex:pageBlockSection collapsible="false" showHeader="true" title="Opportunity Section"> | |
<apex:facet name="header"> | |
<apex:outputPanel> | |
<apex:outputPanel styleClass="ReqHelpText"> </apex:outputPanel> | |
<apex:outputText value="Fill Required Fields"/> | |
</apex:outputPanel> | |
</apex:facet> | |
<apex:inputField value="{!Opportunity.Name}"/> | |
</apex:pageBlockSection> | |
</apex:pageblock> | |
</apex:form> | |
</apex:page> |
No comments:
Post a Comment
Thanks for reading my blog !