Announcement

Collapse
No announcement yet.

Displaying

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Displaying

    I am trying to get a multiple link to show in List view.

    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');
    }

    }
    Last edited by bradaks; 11-13-2017, 03:18 AM.

  • #2
    Figured it out. Forgot the:

    PHP Code:
    use \Espo\ORM\Entity

    Comment

    Working...
    X