<?php
// Call Row_Rendering event
$types->Row_Rendering();
// id
$types->id->CellCssStyle = ""; $types->id->CellCssClass = "";
$types->id->CellAttrs = array(); $types->id->ViewAttrs = array(); $types->id->EditAttrs = array();
// name
$types->name->CellCssStyle = ""; $types->name->CellCssClass = "";
$types->name->CellAttrs = array(); $types->name->ViewAttrs = array(); $types->name->EditAttrs = array();
// Call Row_Rendered event
$types->Row_Rendered();
?>
<p><span class="phpmaker"><?php echo $Language->Phrase("MasterRecord") ?><?php echo $types->TableCaption() ?><br>
<a href="<?php echo $gsMasterReturnUrl ?>"><?php echo $Language->Phrase("BackToMasterPage") ?></a></span></p>
<table cellspacing="0" class="ewGrid"><tr><td class="ewGridContent">
<div class="ewGridMiddlePanel">
<table cellspacing="0" class="ewTable ewTableSeparate">
<thead>
<tr>
<td class="ewTableHeader"><?php echo $types->id->FldCaption() ?></td>
<td class="ewTableHeader"><?php echo $types->name->FldCaption() ?></td>
</tr>
</thead>
<tbody>
<tr>
<td<?php echo $types->id->CellAttributes() ?>>
<div<?php echo $types->id->ViewAttributes() ?>><?php echo $types->id->ListViewValue() ?></div></td>
<td<?php echo $types->name->CellAttributes() ?>>
<div<?php echo $types->name->ViewAttributes() ?>><?php echo $types->name->ListViewValue() ?></div></td>
</tr>
</tbody>
</table>
</div>
</td></tr></table>
<br>