
Originally Posted by
bob1965
sorry, more specific its in :
Leads>>Layout>>Editview
It appears to only let me show 2 fields in one row and as I have a number of fields which are dropdowns Y/N
there is a lot of sparcity on the screen.
Hi try this;
Copy editview.defs.php from modules\Leads\metadata
and save this in \custom\modules\Leads\metadata
Replace these lines;
PHP Code:
'maxColumns' => '2',
'widths' => array(
array('label' => '10', 'field' => '30'),
array('label' => '10', 'field' => '30')
),
into
PHP Code:
'maxColumns' => '3',
'widths' => array (
0 =>
array (
'label' => '10',
'field' => '30',
),
1 =>
array (
'label' => '10',
'field' => '30',
),
2 =>
array (
'label' => '10',
'field' => '30',
),
),
Rebuild Extensions
Bookmarks