function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Rohit SharmaGRohit SharmaG 

Output link and Service Console

Hi Folks,

I am using apex:outputLink in VF page and renderas = "pdf". But "Back" hyperlink is working fine in App, not in Service console.

<table  style="width:100%">
  <tr>
    <td ><apex:image id="theImage" value="{!$Resource.abbottlogo}" /></td>
    <td align="right">   <apex:outputLink value="https://cs11.salesforce.com/{!caseID}{!caseID}" >Back</apex:outputLink> </td>
  </tr>
  </table>

Please assist on this. Thanks in advance !!!!!!!
Nilesh Jagtap (NJ)Nilesh Jagtap (NJ)
Hi Rohit,

Looks like you have appended case Id twice in URL. Replace outputlink value with
<apex:outputLink value="https://cs11.salesforce.com/{!caseID}" >

Also please check if it still retains the console app or it comes out of the console to regular sales app

Thanks,
N.J
Rohit SharmaGRohit SharmaG
Sorry its copy caseID 2 times, I removed but still not working