git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@118 97e9348a-65ac-dc4b-aefc-98561f571b83
14 lines
533 B
PHP
14 lines
533 B
PHP
<?php /* -*- mode:PHP -*- */
|
|
|
|
// Define the table columns
|
|
$cols = array();
|
|
$cols['ID'] = array('index' => 'Unit.id', 'formatter' => 'id');
|
|
$cols['Unit'] = array('index' => 'Unit.name', 'width' => '50');
|
|
$cols['Size'] = array('index' => 'UnitSize.name', 'width' => '75');
|
|
$cols['Status'] = array('index' => 'Unit.status', 'width' => '75');
|
|
$cols['Comment'] = array('index' => 'Unit.comment', 'formatter' => 'comment');
|
|
|
|
echo $this->element('jqGrid',
|
|
array('jqGridColumns' => $cols));
|
|
|