I have followed instructions of the CFV4_db_multi_record_loader.pdf
But although I am getting a results table, there is no edit function. Does this code work with J!1.7 or is there any difference between code required for Joomla versions.
The code I am using is:
Could anyone advise me where I might be going wrong - I have followed tutorials and checked my steps several times?
Site not published yet, so can't show a link, but can supply access.
Thanks in advance.
But although I am getting a results table, there is no edit function. Does this code work with J!1.7 or is there any difference between code required for Joomla versions.
The code I am using is:
<table>
<td>Name<td><td>Business<td><td>Email<td><td>County<td><td>Edit<td>
<?php
foreach($form->data['MysteryShopperDetails'] as $detail):
?>
<tr>
<td><?php echo $detail['contact_name']; ?><td>
<td><?php echo $detail['business']; ?><td>
<td><?php echo $detail['email']; ?><td>
<td><?php echo $detail['county']; ?><td>
<td><a href="index.php?option=com_chronoforms&chronoform=mysteryshop_single_loader&token=<?php echo $detail['cf_uid']; ?>Edit</a></td>
</tr>
<?php
endforeach;
?>
</table>
Could anyone advise me where I might be going wrong - I have followed tutorials and checked my steps several times?
Site not published yet, so can't show a link, but can supply access.
Thanks in advance.