Hello All,
Good day!
I have a question and I do hope you have the time and patience to answer it.
1. I have added the contact panel via this function on the Calls Detail View.
public function loadAdditionalFieldsForList(Entity $entity)
{
parent::loadAdditionalFieldsForList($entity);
$entity->loadLinkMultipleField('contacts');
}
2. Now that the small contacts panel appears, I have reconfigured it to show contact details for the particular contact.
3. Now on the right hand side, where the contacts also appear called Attendees, there is a drop down menu that say whether the contact has accepted, tentative or declined.
My questions are:
1. How can I get the drop down menu on the right panel (A) to appear to the list (B)?
2. I want to add a call note for everytime I have the agents call a particular contact. What steps do I need to do so I make it so?
Good day!
I have a question and I do hope you have the time and patience to answer it.
1. I have added the contact panel via this function on the Calls Detail View.
public function loadAdditionalFieldsForList(Entity $entity)
{
parent::loadAdditionalFieldsForList($entity);
$entity->loadLinkMultipleField('contacts');
}
2. Now that the small contacts panel appears, I have reconfigured it to show contact details for the particular contact.
3. Now on the right hand side, where the contacts also appear called Attendees, there is a drop down menu that say whether the contact has accepted, tentative or declined.
My questions are:
1. How can I get the drop down menu on the right panel (A) to appear to the list (B)?
2. I want to add a call note for everytime I have the agents call a particular contact. What steps do I need to do so I make it so?
Comment