42 lines
765 B
PHP
Executable File
42 lines
765 B
PHP
Executable File
<?php
|
|
// created: 2013-12-18 13:46:52
|
|
$subpanel_layout['list_fields'] = array (
|
|
'status' =>
|
|
array (
|
|
'type' => 'enum',
|
|
'vname' => 'LBL_STATUS',
|
|
'sortable' => false,
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'document_no' =>
|
|
array (
|
|
'type' => 'varchar',
|
|
'vname' => 'LBL_DOCUMENT_NO',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'name' =>
|
|
array (
|
|
'type' => 'name',
|
|
'vname' => 'LBL_NAME',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'date_entered' =>
|
|
array (
|
|
'type' => 'datetime',
|
|
'vname' => 'LBL_DATE_ENTERED',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'options' =>
|
|
array (
|
|
'default' => true,
|
|
'width' => '2%',
|
|
'sortable' => false,
|
|
'vname' => ' ',
|
|
),
|
|
);
|
|
?>
|