This commit is contained in:
2024-04-27 09:23:34 +02:00
commit 11e713ca6f
11884 changed files with 3263371 additions and 0 deletions

View File

@@ -0,0 +1,40 @@
<?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,
),
);
?>