Skip to content

Change Master Detail Grid Layout e.g. side by side

The easiest way is to put them in a table like this and you can change layout using the table.

<table>
<tr><td>  
<?php
...
GRID 1 (master)
...?>

<td>
<?php
...GRID 2 (detail)
...?>
</td>
<tr>
</table>

Obviously, there's more elegant way to do this without using table if you are familiar with CSS. Nevertheless, table is the simplest and gets job done.

Feedback and Knowledge Base