Answered
issue with layout / repeat region part 2..
Seems I haven't cracked this just yet - basically have a
details page that is split into three - with a candidate's details
at the top left, their work profile at the top right, with a long
CV text appearing below both.
All the fields are from the Candidates table, except the profiles - so the profiles need to be a repeat region to list them all.
I can't for the life of me get the layout to work as I'd like - it's as tho' anything appearing afer the repeat region won't display.
See here :
link
Below the CV header the CV field should appear - as in :
<tr>
<td colspan="2" valign="top" class="labelcell">CV</td>
</tr>
<tr>
<td class="profilecell"><?php echo $row_Candidates['CV']; ?></td>
</tr>
But when you view source, the <?php echo $row_Candidates['CV']; ?> is AWOL, and appear as :
<tr>
<td colspan="2" valign="top" class="labelcell">CV</td>
</tr>
<tr>
<td class="profilecell"></td>
</tr>
Anyone spot what's up here?
Just as I thought I had this page's layout done and dusted, as usual, there had to be something not quite right!
Iain
All the fields are from the Candidates table, except the profiles - so the profiles need to be a repeat region to list them all.
I can't for the life of me get the layout to work as I'd like - it's as tho' anything appearing afer the repeat region won't display.
See here :
link
Below the CV header the CV field should appear - as in :
<tr>
<td colspan="2" valign="top" class="labelcell">CV</td>
</tr>
<tr>
<td class="profilecell"><?php echo $row_Candidates['CV']; ?></td>
</tr>
But when you view source, the <?php echo $row_Candidates['CV']; ?> is AWOL, and appear as :
<tr>
<td colspan="2" valign="top" class="labelcell">CV</td>
</tr>
<tr>
<td class="profilecell"></td>
</tr>
Anyone spot what's up here?
Just as I thought I had this page's layout done and dusted, as usual, there had to be something not quite right!
Iain
