git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@118 97e9348a-65ac-dc4b-aefc-98561f571b83
17 lines
859 B
PHP
17 lines
859 B
PHP
<?php /* -*- mode:PHP -*- */
|
|
|
|
// Define the table columns
|
|
$cols = array();
|
|
$cols['Lease'] = array('index' => 'Lease.number', 'formatter' => 'id');
|
|
$cols['Unit'] = array('index' => 'Unit.name', 'width' => '50', 'align' => 'center');
|
|
$cols['Customer'] = array('index' => 'Customer.name', 'width' => '150');
|
|
$cols['Signed'] = array('index' => 'Lease.lease_date', 'formatter' => 'date');
|
|
$cols['Move-In'] = array('index' => 'Lease.movein_date', 'formatter' => 'date');
|
|
$cols['Move-Out'] = array('index' => 'Lease.moveout_date', 'formatter' => 'date');
|
|
$cols['Balance'] = array('index' => 'Lease.balance', 'formatter' => 'currency');
|
|
$cols['Comment'] = array('index' => 'Lease.comment', 'formatter' => 'comment');
|
|
|
|
echo $this->element('jqGrid',
|
|
array('jqGridColumns' => $cols));
|
|
|