<?php
// Call Row_Rendering event
$rooms->Row_Rendering();
// id
$rooms->id->CellCssStyle = ""; $rooms->id->CellCssClass = "";
$rooms->id->CellAttrs = array(); $rooms->id->ViewAttrs = array(); $rooms->id->EditAttrs = array();
// name
$rooms->name->CellCssStyle = ""; $rooms->name->CellCssClass = "";
$rooms->name->CellAttrs = array(); $rooms->name->ViewAttrs = array(); $rooms->name->EditAttrs = array();
// description
$rooms->description->CellCssStyle = ""; $rooms->description->CellCssClass = "";
$rooms->description->CellAttrs = array(); $rooms->description->ViewAttrs = array(); $rooms->description->EditAttrs = array();
// Call Row_Rendered event
$rooms->Row_Rendered();
?>
<p><span class="phpmaker"><?php echo $Language->Phrase("MasterRecord") ?><?php echo $rooms->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 $rooms->id->FldCaption() ?></td>
<td class="ewTableHeader"><?php echo $rooms->name->FldCaption() ?></td>
<td class="ewTableHeader"><?php echo $rooms->description->FldCaption() ?></td>
</tr>
</thead>
<tbody>
<tr>
<td<?php echo $rooms->id->CellAttributes() ?>>
<div<?php echo $rooms->id->ViewAttributes() ?>><?php echo $rooms->id->ListViewValue() ?></div></td>
<td<?php echo $rooms->name->CellAttributes() ?>>
<div<?php echo $rooms->name->ViewAttributes() ?>><?php echo $rooms->name->ListViewValue() ?></div></td>
<td<?php echo $rooms->description->CellAttributes() ?>>
<div<?php echo $rooms->description->ViewAttributes() ?>><?php echo $rooms->description->ListViewValue() ?></div></td>
</tr>
</tbody>
</table>
</div>
</td></tr></table>
<br>