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

View Page - "Back to" link and Quick Links at top of page
Is there a way to mimic the "Back to" link and top quick links (to related lists) at the top of a visualforce page?
You need to sign in to do that
Don't have an account?
Is there a way to mimic the "Back to" link and top quick links (to related lists) at the top of a visualforce page?
You could pass in the link you want to return back to as a query parameter, like salesforce does using the returl query parameter.
You could then render a link, which re-directs you back to the url constructed by using the value of the query parameter passed in.
http://apexsutherland.wordpress.com/2009/05/09/return-the-account-merge-wizard-to-beginning-upon-completion/
Below is some javascript that i used to mimick the quicklinks (to related lists) at the top of a page (requires jQuery):
hope that helps.
Thanks for posting the code!
I have tried to use it, but was first getting the following error:
j$("#miniRL").dialog is not a function. (in the closeNow function)
I'm including jquery-1.4.4.min.js and jquery-ui-1.8.10.custom.min.js - is there a specific jquery version you're using?
I commented out the offending lines, but the page doesn't do anything. Were you hardcoding the relatedList links for the top of the page, with references to the jquery?