I am trying to get a multiple link to show in List view.
I wrote this in Services/Assignment.php:
I wrote this in Services/Assignment.php:
PHP Code:
<?php
namespace Espo\Custom\Services;
class Assignment extends \Espo\Core\Templates\Services\Event
{
public function loadAdditionalFieldsForList(Entity $entity)
{
parent::loadAdditionalFields($entity);
$entity->loadLinkMultipleField('contacts');
}
}
Comment