Skip to content

Instantly share code, notes, and snippets.

@arun12209
Created December 30, 2018 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arun12209/52c033648a27502f0f005242fa12206d to your computer and use it in GitHub Desktop.
Save arun12209/52c033648a27502f0f005242fa12206d to your computer and use it in GitHub Desktop.
ContractPDFCntrl
<apex:page controller="ContractPDFCntrl" sidebar="false" showHeader="false" applyBodyTag="false" renderAs="PDF">
<html>
<head>
</head>
<body>
<table style="border-collapse: collapse; ">
<apex:repeat value="{!wrapperList}" var="row">
<tr style="border: 1px solid rgb(221, 219, 218); width:700px;">
<apex:repeat value="{!row.values}" var="value">
<td style="border: 1px solid rgb(221, 219, 218); padding: 15px; ">{!value}</td>
<td style="border: 1px solid rgb(221, 219, 218); padding: 15px;">
{!row.values[value]}
</td>
</apex:repeat>
</tr>
</apex:repeat>
</table>
</body>
</html>
</apex:page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment