Go to your sugar directory...
sugar/custom/modules/MODULENAME/metadata/subpanels
Open the subpanel.php and add this line
'widget_class' => 'SubPanelDetailViewLink',
to the name field array.
Should look like this.
Code:
'name_c' =>
array (
'name' => 'name_c',
'vname' => 'LBL_NAME',
'width' => '40',
'widget_class' => 'SubPanelDetailViewLink',
), For the edit/remove buttons.... add this to the end of the file.
Code:
'edit_button' =>
array (
'widget_class' => 'SubPanelEditButton',
'module' => 'MODULENAME',
'width' => '4',
),
'remove_button' =>
array (
'widget_class' => 'SubPanelRemoveButton',
'module' => 'MODULENAME',
'width' => '4',
),
Bookmarks