Guest User

Untitled

a guest
Nov 17th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <div class="form-group col-sm-12">
  2. <apex:outputLabel value="
  3. {!$ObjectType.Employment_History__c.fields.Job_description__c.label}"
  4. styleClass="control-label"/>
  5. <apex:inputTextarea value="{!emp.Job_description__c}" styleClass="form-
  6. control" />
  7. </div>
  8.  
  9. if (String.isBlank(emp.Job_description__c)){
  10. emp.Job_description__c.addError(System.Label.Validation
  11. EmploymentDescription);
  12. doNotsubmit = true;
  13. }
Add Comment
Please, Sign In to add comment