• Jaideep Thakur
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 1
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 0
    Replies
Hello Everyone,

Requirement : To design a VF page from where I can call to Opportunity or Lead using <support:clicktodial/>.

Issue : I have designed VF page but Click to Dial is not working, on clicking the number it gets disabled for few seconds but call doesn't initiates. We are using New Voice Media.

Code : 
<apex:column headerValue="Phone">
       <!--<apex:outputField value="{!wrap.opp.Primary_Contact__r.phone}" rendered="{!if(wrap.isOppty == true,true,false)}"/>-->                  <support:clickToDial entityId="{!wrap.opp.id}" number="{!wrap.ld.phone}" rendered="{!if(wrap.isOppty == false,true,false)}"/> <support:clickToDial entityId="{!wrap.ld.id}" number="{!wrap.opp.Primary_Contact__r.phone}" rendered="{!if(wrap.isOppty == true,true,false)}"/> <support:clickToDial entityId="{!lead.id}" number="{!lead.phone}" />
</apex:column>

Please let me know how to resolve this issue.

Thanks in Advance! 
Hello Everyone,

Requirement : To design a VF page from where I can call to Opportunity or Lead using <support:clicktodial/>.

Issue : I have designed VF page but Click to Dial is not working, on clicking the number it gets disabled for few seconds but call doesn't initiates. We are using New Voice Media.

Code : 
<apex:column headerValue="Phone">
       <!--<apex:outputField value="{!wrap.opp.Primary_Contact__r.phone}" rendered="{!if(wrap.isOppty == true,true,false)}"/>-->                  <support:clickToDial entityId="{!wrap.opp.id}" number="{!wrap.ld.phone}" rendered="{!if(wrap.isOppty == false,true,false)}"/> <support:clickToDial entityId="{!wrap.ld.id}" number="{!wrap.opp.Primary_Contact__r.phone}" rendered="{!if(wrap.isOppty == true,true,false)}"/> <support:clickToDial entityId="{!lead.id}" number="{!lead.phone}" />
</apex:column>

Please let me know how to resolve this issue.

Thanks in Advance!