Skip to content

Instantly share code, notes, and snippets.

@niavesper
Created March 21, 2021 23:10
Show Gist options
  • Save niavesper/993a5d9e94d58c5a3f39c691d09bec8e to your computer and use it in GitHub Desktop.
Save niavesper/993a5d9e94d58c5a3f39c691d09bec8e to your computer and use it in GitHub Desktop.
<apex:component controller="getCaseSysChanges" access="global">
<apex:attribute name="currentCaseId" type="Id" description="Id of the case" assignTo="{!caseId}"/>
<table border = "2" cellspacing = "5">
<tr>
<td><b>Sys Change Number</b></td>
<td><b>Type</b></td>
<td><b>Due Date</b></td>
<td><b>Description</b></td>
</tr>
<apex:repeat value="{!sysChanges}" var="sc">
<tr>
<td>{!sc.Name}</td>
<td>{!sc.Type_of_Change__c}</td>
<td>{!sc.Target_Completion_Date__c}</td>
<td>{!sc.Description_of_Change__c}</td>
</tr>
</apex:repeat>
</table>
</apex:component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment