41 lines
867 B
PHP
41 lines
867 B
PHP
<?php
|
|
// created: 2014-01-29 14:27:07
|
|
$subpanel_layout['list_fields'] = array (
|
|
'name' =>
|
|
array (
|
|
'vname' => 'LBL_LIST_NAME',
|
|
'widget_class' => 'SubPanelDetailViewLink',
|
|
'width' => '50%',
|
|
'default' => true,
|
|
),
|
|
'assigned_user_name' =>
|
|
array (
|
|
'name' => 'assigned_user_name',
|
|
'vname' => 'LBL_LIST_ASSIGNED_TO_NAME',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'currency_value' =>
|
|
array (
|
|
'type' => 'decimal',
|
|
'vname' => 'LBL_CURRENCY_VALUE',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
'edit_button' =>
|
|
array (
|
|
'widget_class' => 'SubPanelEditButton',
|
|
'module' => 'EcmPriceBooks',
|
|
'width' => '4%',
|
|
'default' => true,
|
|
),
|
|
'remove_button' =>
|
|
array (
|
|
'widget_class' => 'SubPanelRemoveButton',
|
|
'module' => 'EcmPriceBooks',
|
|
'width' => '5%',
|
|
'default' => true,
|
|
),
|
|
);
|
|
?>
|