Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I am new to cakephp 2, I have been trying to do a paginate on a associated data (hasMany) but I could not get it to work.

I have two models; Account & transactions. the Account which hasMany transactions & Im using a bake which gives me a basic view but I want to add a paginate to the related data (transaction) for each of the account view.

I know this should be a easy stuff, since Im new to cakephp pagination, any help I will appreciate.

in the AccountsController I have something like this below

public $paginate = array(
    'Transaction' => array(
        'limit' => 2,
        'order' => array('date' => 'ASC'),
        'conditions' => array('Transaction.account_id' =>10 ),
        //'contain' => 'Transaction'
    )   
);

I have something like this in my view.ctp

<?php echo __('Related Transactions'); ?></h3>
<?php if (!empty($account['Transaction'])): ?>
 <table cellpadding = "0" cellspacing = "0">
<tr>
    <th><?php echo $this->Paginator->sort('id','#'); ?></th>
    <th><?php echo $this->Paginator->sort('date', 'Date'); ?></th>
    <th><?php echo $this->Paginator->sort('reference'); ?></th>
    <th><?php echo $this->Paginator->sort('description'); ?></th>
    <th><?php echo $this->Paginator->sort('debit'); ?></th>
    <th><?php echo $this->Paginator->sort('credit'); ?></th>
    <th class="actions"><?php echo __('Actions'); ?></th>
</tr>
<?php
    $i = 0;
    foreach ($account['Transaction'] as $transaction): ?>
    <tr>
        <td><?php echo $transaction['id']; ?></td>
        <td><?php echo $transaction['date']; ?></td>
        <td><?php echo $transaction['reference']; ?></td>
        <td><?php echo $transaction['description']; ?></td>
        <td><?php echo $transaction['debit']; ?></td>
        <td><?php echo $transaction['credit']; ?></td>
        <td class="actions">
            <?php echo $this->Html->link(__('View'), array('controller' => 'transactions', 'action' => 'view', $transaction['id'])); ?>
            <?php echo $this->Html->link(__('Edit'), array('controller' => 'transactions', 'action' => 'edit', $transaction['id'])); ?>
            <?php echo $this->Form->postLink(__('Delete'), array('controller' => 'transactions', 'action' => 'delete', $transaction['id']), null, __('Are you sure you want to delete # %s?', $transaction['id'])); ?>
        </td>
    </tr>
<?php endforeach; ?>
</table>
<?php endif; ?>

<p>
<?php
echo $this->Paginator->counter(array(
'model' => 'Transaction',
'format' => __('Page {:page} of {:pages}, showing {:current} records out of {:count} total, starting on record {:start}, ending on {:end}, from model {:model}')
));
?>  </p>
share|improve this question
1  
Show the existing code you are using to paginate your model data. That will help people pinpoint what you could do differently. – Scott Harwell Dec 27 '12 at 1:31

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.