Created
December 30, 2018 07:59
-
-
Save arun12209/52c033648a27502f0f005242fa12206d to your computer and use it in GitHub Desktop.
ContractPDFCntrl
This file contains hidden or 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="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