Created
April 7, 2016 17:22
-
-
Save brianmfear/a144b140540f146e014680ed5ab02691 to your computer and use it in GitHub Desktop.
Documents and Their Sizes
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
public class Documents { | |
public Document[] getDocuments() { | |
return [SELECT Name, BodyLength FROM Document]; | |
} | |
} |
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 controller="Documents"> | |
<apex:dataTable value="{!documents}" var="doc"> | |
<apex:column headerValue="File Name" value="{!doc.Name}" /> | |
<apex:column headerValue="File Size (KB)" value="{!floor(doc.BodyLength / 1024)} KB" /> | |
</apex:dataTable> | |
</apex:page> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment