customize edit page is not appeared

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
athirahjeff
User
Posts: 13

customize edit page is not appeared

Post by athirahjeff »

Hi, I need help on one of my customize edit page which is not appeared on http://localhost:8080/system/ncrv3/jkj_sejagat_ofiedit.php?RecordID=8.

This is my code:

<style>  
	.table-bordered > thead > tr > th,
	.table-bordered > tbody > tr > th,
	.table-bordered > tfoot > tr > th {
		background-color: #ddd !important;
	}
</style>
<div class="panel panel-primary">
	<div class="panel-heading">
		<h3 align="center">OPPORTUNITY FOR IMPROVEMENT UPDATE</h3>
	</div>
</div>
{{{page_1}}}
<div class="panel-body">
<div class="panel panel-info">
	<table class="table table-bordered">
		<tr>
			<th width="200">Record ID</th>
			<td>{{{value RecordID}}}</td>
			<th width="200">OFI Ref.No</th>
			<td>{{{value ofi_no}}}</td>
		</tr>
		<tr>
			<th>To (Party Concerned)</th>
			<td>INFRA DESA (JOHOR) SDN. BHD.</td>
			<th>Attention</th>
			<td>KETUA PEGAWAI OPERASI</td>
		</tr>
		<tr>
			<th>Area</th>
			<td>{{{value area_office}}}</td>
			<th>OFI Issue</th>
			<td>{{{value ofi_subcate}}}</td>
		</tr>
		<tr>
			<th>Issued By</th>
			<td>{{{value ofi_issuedby}}}</td>
			<th>Issued Date</th>
			<td>{{{value ofi_issueddate1}}}</td>
		</tr>
		</tr>
			<th>Received By</th>
			<td>{{{value ofi_receivedby}}}</td>
			<th>Received Date</th>
			<td>{{{value ofi_receiveddate}}}</td>
		</tr>
		</tr>
			<th>OFI Details</th>
			<td>{{{value ofi_details}}}</td>
			<th>OFI Category</th>
			<td>{{{value ncr_category}}}</td>
		</tr>
		<tr>
			<th>OFI Description</th>
			<td colspan="4"><br>{{{value ncr_description}}}</td>
		</tr>
		<tr>
			<th>OFI attachment</th>
			<td colspan="4"><br>{{{value ofi_attachment}}}</td>
		</tr>
	</table>
</div>
</div>
{{{/page_1}}}
{{{page_2}}}
<div class="panel-body">
<div class="panel panel-info">
	<table class="table table-bordered">
		<tr>
			<th width="200">Corrected By</th>
			<td>{{{value correction_proposedby}}}</td>
			<th width="200">Correction Date</th>
			<td>{{{value correction_date}}}</td>
		</tr>
		<tr>
			<th>Correction Detail</th>
			<td colspan="4">{{{value ofi_correction}}}</td>
		</tr>
		<tr>
			<th>Attachment</th>
			<td colspan="4">{{{value ofi_attachcorrection}}}</td>
		</tr>
	</table>
</div>
</div>
{{{/page_2}}}
{{{page_3}}}
<div class="panel-body">
<div class="panel panel-info">
	<table class="table table-bordered">
	<tr>
	<td colspan="6" style="font-weight:Bold;"><b>1ST INSPECTION RESULT</b></td>
	</tr>
		<tr>
			<th width="200">Inspection Date</th>
			<td>{{{value 1st_inspection_date}}}</td>
			<th width="200">Inspected By</th>
			<td>{{{value inspect_by1}}}</td>
			<th width="200">Inspection Result</th>
			<td>{{{value 1st_inspection_result}}}</td>
		</tr>
			<tr>
	<td colspan="6" style="font-weight:Bold;"><b>2ND INSPECTION RESULT</b></td>
	</tr>
		<tr>
			<th width="200">Inspection Date</th>
			<td>{{{value 2nd_inspection_date}}}</td>
			<th width="200">Inspected By</th>
			<td>{{{value inspect_by2}}}</td>
			<th width="200">Inspection Result</th>
			<td>{{{value 2nd_inspection_result}}}</td>
		</tr>
		<tr>
	<td colspan="6" style="font-weight:Bold;"><b>APPROVAL</b></td>
	</tr>
		<tr>
			<th width="200">Approved By</th>
			<td>{{{value approved_by}}}</td>
			<th width="200">Approved Date</th>
			<td>{{{value approved_date}}}</td>
			<th width="200">OFI Status</th>
			<td>{{{value ofi_status}}}</td>
		</tr>
	</table>
</div>
</div>
{{{/page_3}}}
{{{page_4}}}
<div class="panel-body">
<div class="panel panel-info">
	<table class="table table-bordered">
		<tr>
			<th width="200">CPAR Needed</th>
			<td>{{{value cpar_need}}}</td>
			<th width="200">CPAR Ref.No</th>
			<td>{{{value cpar_ref}}}</td>
			<th width="200">OFI Review Date</th>
			<td>{{{value ofi_reviewdate}}}</td>
		</tr>
		<tr>
			<th>OFI Review</th>
			<td colspan="5">{{{value ofi_review}}}</td>
		</tr>
	</table>
</div>
</div>
{{{/page_4}}}

mobhar
User
Posts: 11660

Post by mobhar »

Where did you put that code? Is this related to Custom Templates feature? If so, in which section did you put that code?


athirahjeff
User
Posts: 13

Post by athirahjeff »

I put it under custom templates -> Edit page -> custom template.


mobhar
User
Posts: 11660

Post by mobhar »

How many pages that you have already setup for that table in your PHPMaker project in Table setup?

From your code above, you included 4 pages. Is that all? Are there any that you have not included?


Post Reply