You need to sign in to do that
Don't have an account?
Rohit SharmaG
Link on PDF gerenated by VF page
I want to hyperlink as "Back" on PDF to navigate Page to Case list view page -
<div align="right" >
<b><apex:commandLink target="_blank" action="{!cancel}" value="Back " id="theCommandLink" /></b>
</div>
It is not working. please assist on this.
Thanks for support !!!!!!!!!!!
/Rohit Sharma
<div align="right" >
<b><apex:commandLink target="_blank" action="{!cancel}" value="Back " id="theCommandLink" /></b>
</div>
It is not working. please assist on this.
Thanks for support !!!!!!!!!!!
/Rohit Sharma
apex:outputLink is documented as safe to use, so you could provide a link back the previous page that way. You won't be able to post back to the server though.
<apex:outputLink value="{!URLFOR('/500')}">Back</apex:outputLink>
Regards,
Sravan