Fixed problem with sorting by entries/debits/credits/balance
git-svn-id: file:///svn-source/pmgr/branches/ledger_transactions_20090605/site@173 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
@@ -5,10 +5,10 @@ $cols = array();
|
||||
$cols['ID'] = array('index' => 'Account.id', 'formatter' => 'id');
|
||||
$cols['Name'] = array('index' => 'Account.name', 'formatter' => 'name', 'width' => '250');
|
||||
$cols['Type'] = array('index' => 'Account.type', 'width' => '60');
|
||||
$cols['Entries'] = array('index' => 'Account.entries', 'width' => '60', 'align' => 'right');
|
||||
$cols['Debits'] = array('index' => 'Account.debits', 'formatter' => 'currency');
|
||||
$cols['Credits'] = array('index' => 'Account.credits', 'formatter' => 'currency');
|
||||
$cols['Balance'] = array('index' => 'Account.balance', 'formatter' => 'currency');
|
||||
$cols['Entries'] = array('index' => 'entries', 'width' => '60', 'align' => 'right');
|
||||
$cols['Debits'] = array('index' => 'debits', 'formatter' => 'currency');
|
||||
$cols['Credits'] = array('index' => 'credits', 'formatter' => 'currency');
|
||||
$cols['Balance'] = array('index' => 'balance', 'formatter' => 'currency');
|
||||
$cols['Comment'] = array('index' => 'Account.comment', 'formatter' => 'comment');
|
||||
|
||||
$jqGrid_options = array('jqGridColumns' => $cols,
|
||||
|
||||
Reference in New Issue
Block a user