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
vreddyvreddy 

moving to and fro between a records detail page and a visualforce page...

Hi,

 

I have a requirement which needs the functionality of moving back and forth between a record's detail page

 

and Visualforce page.

 

I know we can accomplish it through custom links.

 

The problem is how would I capture the URL of the detail page which in turn would be the target for the

 

custom link that I provide in VF page.

 

Is there any 'method' in the  API or any other ideas how can it be accomplished?

 

Appreciate your help.

 

Thanks in advance.

Ron HessRon Hess

the url of the detail page is /recordid

 

 

so all your visualforce page needs is the id of the detail page, so on the Detail page you create a custom link that call your visualforce page and passes this info

 

/apex/mypage?id=detailrecordid

 

 

then the visualforce page can construct the link to go back, which is /detailrecordid

vreddyvreddy

How can I capture the record ID dynamically to send as a query parameter?

 

Appreciate your help.

 

Thanks

Ron HessRon Hess

ApexPages.CurrentPage().getParameters().get() and .put()

 

you'll want to read up on how to call these in the docs

gv007gv007

Use Dynamic Apex yours problem will solve it is a new feature in winter 08 .U need to do some research on that capturing the objects type and object ids dynamically.

 

Regards

Gopi