Home Visual Force How to format a date in VisualForce?
APEX Class:

public List getCaseAttachmentList(){
  if(caseId != null && caseId != ”) {
 string attachCaseQry = ‘Select Id, Name, Body, CreatedDate From Attachment where ParentId = \”+caseId+ ‘\”;
 caseAttachmentList = (List)Database.query(attachCaseQry);
 system.debug(‘Attachment Result:’ + caseAttachmentList);
 
  }
  return caseAttachmentList;
}
VisualForce Page:
 
 
Output:
03/30/2012
04/02/2012
04/01/2012

You may also like

Leave a Comment