You need to sign in to do that
Don't have an account?

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 !!!!!!!
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 !!!!!!!
Looks like you have appended case Id twice in URL. Replace outputlink value with
Also please check if it still retains the console app or it comes out of the console to regular sales app
Thanks,
N.J