in SugarCRM some modules like “Calls” has an “i” (Additional Details) icon in List view which shows some additional details about that record.
I want to display same kind for other modules like customer visits with some custom details of the records.
Any hints or guidance will be helpful.
1) Create a file in your metadata folder
{MODULENAME}/metadata/additionalDetails.php. You have to find correct place of your module.2) and create a function something like this. replace
{MODULENAME}and{MODULE_BEAN_NAME}with actual module name in all places.you have to create
$overlib_stringwith your data (in html). If you need edit and view links on your modal box you have to return them as well.$fieldsis an associative array that contains db record.3) The
iicon should appear on the module list view.