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
MktdevMktdev 

Poping up another Visualforce page from inlineVisualforce and once close of pop up main to refresh

Hi,

 

I want to have one inline visualforce page with a button on case .when user click on button they should popup another visualforce page and on xlose of pop refresh the the parent page. same as lookup functionality.

 

 

 

regards,

mukesh

 

Best Answer chosen by Admin (Salesforce Developers) 
bob_buzzardbob_buzzard

Here's a blog post of mine that details how to create your own lookup in Visualforce. 

 

http://bobbuzzard.blogspot.com/2010/09/visualforce-lookup.html

 

 In order to refresh the main page you'd simply have to take further action after closing the child window, and this blog post details how to refresh the main page when inline:

 

http://bobbuzzard.blogspot.com/2011/05/refreshing-record-detail-from-embedded.html

All Answers

bob_buzzardbob_buzzard

Here's a blog post of mine that details how to create your own lookup in Visualforce. 

 

http://bobbuzzard.blogspot.com/2010/09/visualforce-lookup.html

 

 In order to refresh the main page you'd simply have to take further action after closing the child window, and this blog post details how to refresh the main page when inline:

 

http://bobbuzzard.blogspot.com/2011/05/refreshing-record-detail-from-embedded.html

This was selected as the best answer
MktdevMktdev

Hi Bob,

 

Awesome! This has resolved the issue.I just wanted to refresh the page on save and its simply great! Thanks!