Announcement

Collapse
No announcement yet.

Contacts phone numbers in calls list

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

  • Contacts phone numbers in calls list

    Hello

    I want to display contacts phone number in the list of call entity.

    how can I do this please?

    Thank you

  • #2
    Hi

    That's not easy. You need to create notStorable field. Then in custom Call Service class call define method oadAdditionalFieldsForList where you will load phone numbers.

    Comment


    • Maryam123
      Maryam123 commented
      Editing a comment
      Hello my phone numbers are not showing

  • #3
    My phone numbers are not showing
    Attached Files

    Comment


    • #4
      phone numbers are not showing.
      public function loadAdditionalFieldsForList(Entity $entity) { parent::loadAdditionalFieldsForList($entity); $entity->loadLinkMultipleField('users'); $entity->loadLinkMultipleField('contacts'); $entity->loadLinkMultipleField('phoneNumbers'); }

      Comment

      Working...
      X