Moved all grid elements onto the grid helper. Basic testing done, but more testing needs to be done.

git-svn-id: file:///svn-source/pmgr/branches/invoice_receipt_20090629/site@262 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-07-08 20:40:44 +00:00
parent a88f5829ce
commit 4d123b63f0
22 changed files with 327 additions and 321 deletions

View File

@@ -63,11 +63,17 @@ echo '<div CLASS="detail supporting">' . "\n";
* Ledger Entries
*/
echo $this->element('ledger_entries',
array('caption' => "Ledger Entries",
'ledger_id' => $ledger['id'],
'account_type' => $account['type'],
));
echo $this->element('ledger_entries', array
(// Element configuration
'ledger_id' => $ledger['id'],
'account_type' => $account['type'],
// Grid configuration
'config' => array
('caption' => "Ledger Entries",
),
));
/* End "detail supporting" div */
echo '</div>' . "\n";